- Babel Javascript by Michael McDermott
- ESLint by Microsoft
- Prettier - Code formatter by Prettier
cd ./server && npm i -D
cd ./client && npm i -D
cd ./server && npm run dev
cd ./server && npm start
cd ./client && npm start
cd ./client && npm run dev
The following is the schema for the environment variables used in the server.
Variable Name | Description |
---|---|
DB_HOST | The hostname of the database server. |
DB_USER | The username to authenticate with the database. |
DB_PASS | The password to authenticate with the database. |
DB_PORT | The port on which the database server is listening. |
DB_NAME | The name of the database to connect to. |
JWT_SECRET | The secret key used to sign JSON Web Tokens for authentication. |