npm run pm2
: Launch Process Watcher for the Servicenpm run start
: Launch the Service Directlynpm run test
: Runs all Tests associated too the Projectnpm run migrate
: Migrates all database structure into the postgresnpm run seed
: Seeds the base Data into the database
npx sequelize-cli model:generate --name User --attributes username:string,password:string,email:string
-
- Example of how to Generate a new Table Model for the Project
npx sequelize-cli seed:generate --name dev-users
-
- Generates a Seed file named dev-users for the Project
all
: Will 'install' -> 'test' -> 'server' in that order.install
: Installs Development Packages for the Projectinstall-prod
: Installs Production Packages for the Projecttest
: Runs test on the Projectserver
: Runs the Project with a Process Managerupdate
: Updates the Project with Development Packagesclean
: Deletes the node_modules folder in the Projectdocker-run
: Starts the Project up in a Docker Containerdocker-stop
: Stops the Docker Container for the Project