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.
1.9 KiB
1.9 KiB
How To
Quick guide on how to get started with common Frontend and Backend framework
Prerequisites
- VS Code
- IntelliJ IDEA Community
- nodeJS 12.x
- JDK 8 - For Spring Boot only
- Postman
Recommended plugins
- VS Code
- Live Server
- IntelliJ IDEA
- Lombok
- Free MyBatis plugin
- Request Mapper
- Kotlin
Framework
- Backend
- Frontend
- mobile (cross platform)
- Flutter
- Dart
- similarity to Java / C# syntax
- null safety
- widget block build concept. (Feel like lego block building)
- Created By Google
- Dart
- React Native
- Javascript
- Created By Facebook
- Flutter
Comparison Flutter-ReactNative
Razer Pay UAT
Mock API Server using Postman
Docker
- Build docker image
Angular
- Angular Quick Start
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';