showing results for - "node js mysql starter github"
Jordon
28 Mar 2019
1# clone it
2git clone git@github.com:dainiusgliebus/nodejs-express-rest-mysql-starter
3cd nodejs-express-rest-mysql-starter
4
5# Make it your own
6rm -rf .git && git init && npm init
7
8# Install dependencies
9npm install
10
11# Create mysql database and copy sql to database from sql/users.sql
12# Copy .env.example to .env and update with local parameters
13cp .env.example .env
14
15# Run test
16npm run test
17
18# Run test-reload
19npm run test-watch
20
21# Start development live-reload server
22npm run dev
23
24# Start production server:
25npm start
Nicole
08 Jan 2018
1Welcome to my github
2