Use the SQL scripts in postgresql-sql
- create-database.sql
- create-domains.sql
- create-tables.sql
- insert-data.sql
- Change settings in postgresql-express-batch/app/config
- File config/config.json
- dbUser: "postgres"
- dbPassword: "Trustno1" ! Change the Fox Mulder password by your password
# select the repo
cd postgresql-express-batch
# install the repo with npm
npm install
# create database and import JSON data
npm run create
# For the fun delete All data/export Files
# Export JSON data in data/export
# Check the new files (for example movies.json)
npm run export
- Change settings in postgresql-express-crud/app/config
- File config/config.json
- dbUser: "postgres"
- dbPassword: "Trustno1" ! Change the Fox Mulder password by your password
# select the repo
cd postgresql-express-crud
# install the repo with npm
npm install
# Serve CRUD REST API : development mode with nodemon
npm run dev
# Serve CRUD REST API : local mode
npm run start
# Serve CRUD REST API : production mode
npm run prod
# Serve CRUD REST API : production mode with pm2 (process manager)
pm2 start process.config.js --env prod
- in your browser http://localhost:5004/movies
- in your browser http://localhost:5004/shows
- in your browser http://localhost:5004/continents
- in your browser http://localhost:5004/countries
- in your browser http://localhost:5004/cities
Use the SQL scripts in mysql-sql
- create-database.sql
- create-tables.sql
- insert-data.sql
- Change settings in mysql-express-batch/app/config
- File config/config.json
- dbUser: "root"
- dbPassword: "Trustno1" ! Change the Fox Mulder password by your password
# select the repo
cd mysql-express-batch
# install the repo with npm
npm install
# create database and import JSON data
npm run create
# For the fun delete All data/export Files
# Export JSON data in data/export
# Check the new files (for example movies.json)
npm run export