Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 923 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 923 Bytes

Email Login System Starter

Tutorial

https://tejisav.github.io/2019/03/26/project-b-tutorial.html

You can follow this tutorial if you want to know in detail about this project.

Configuration

- Rename .env.example to .env and configure the database environment variables using your MySQL endpoint and email credentials
- Database sql files are provided in the root db directory
- Make sure your endpoint is accessible to the outside world

Running locally in development mode

git clone https://github.com/tejisav/nextjs-express-mysql-starter.git
cd nextjs-express-mysql-starter/src
npm install
npm run dev

Building and deploying in production

git clone https://github.com/tejisav/nextjs-express-mysql-starter.git
cd nextjs-express-mysql-starter/src
npm install
npm run build
npm start