-
Familiarize with NPM
Documentation -
Learn Node.js and Express.js
Node.js Documentation
Express.js Documentation -
Familiarize with MySQL
Documentation -
Familiarize with Dependencies used
Knex Documentation
jsonwebtoken Documentation
- Set the
.env
file with credentials needed.
# Port of the Server
PORT = <PORT>
# Database Information
MYSQL_USER = <Default MySQL User>
MYSQL_PASSWORD = <MySQL Password>
MYSQL_DATABASE = <MySQL Database used>
# JWT Information
JWT_SECRET = <SECRET>
JWT_EXPIRES_IN = <JWT Expired Interval>
- Create MySQL Database
# login to MySQL User
# you may use root as the user
mysql -u <MySQL User> -p
# enter password on given prompt
Password: <MySQL Password>
# Create Database
CREATE DATABSE <MySQL Database Name>;
- Run dependencies installation.
# install all dependencies used in the project
npm install
- Run the project for the first time.
# nodemon development start
npm run devstart
# deployment start
npm start
- Vincent Pradipta (xhfmvls)
- Daniel Steven Elba (Dr4b0t)