You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Yik Teng Hie e3d751833f mysql docker persistent data 5 years ago
angular add angular & terraform quick guide 5 years ago
ansible ansible : deployment automation 5 years ago
aws aws ssh command 5 years ago
backend update jenkins 5 years ago
docker mysql docker persistent data 5 years ago
frontend quick start for vueJS and nextJS 5 years ago
git update jenkins 5 years ago
ide add nodeJS guide 5 years ago
jenkins wallet-api deploy script 5 years ago
local add local debugger setup procedure 5 years ago
mobile/flutter flutter installation notes 5 years ago
mysql mysql docker persistent data 5 years ago
nodeJS add nodeJS guide 5 years ago
postman add postman mock server setup 5 years ago
redis add docker doc 5 years ago
service-mesh add aws 5 years ago
terraform add angular & terraform quick guide 5 years ago
uat add uat setup process 5 years ago
ubuntu mysql docker persistent data 5 years ago
vagrant ubuntu 5 years ago
wsl-vm enable WSL to HyperV networking 5 years ago
README.md sql 8 fix 5 years ago

README.md

How To

Quick guide on how to get started with common Frontend and Backend framework

Prerequisites

  • VS Code
    • Live Server
  • IntelliJ IDEA
    • Lombok
    • Free MyBatis plugin
    • Request Mapper
    • Kotlin

Framework

Comparison Flutter-ReactNative

Razer Pay UAT

Mock API Server using Postman

Docker

Angular

mysql> CREATE USER 'razerpay'@'%' IDENTIFIED BY 'razerpay-singapore';
mysql> GRANT All PRIVILEGES ON *.* TO 'razerpay'@'%';
mysql> FLUSH PRIVILEGES;

mysql> SHOW GRANTS FOR 'razerpay'@'%';
mysql> REVOKE ALL PRIVILEGES ON *.* FROM 'razerpay'@'%';
mysql> DROP USER 'razerpay'@'%';

// apply this for mysql-8 if encountered PublicKeyRetrieval error
mysql> ALTER USER 'razerpay'@'%' IDENTIFIED WITH mysql_native_password BY 'razerpay-singapore';