This node+express application will serve the client web app with information via a REST API. Othe applications can also access the data by passing having an authenticated user.
Create a full production build:
npm run build
Create a development build, with additional debugging features enabled:
npm run build:dev
After perfomin any two of the above, run the command below to run your build
npm start
Make sure you have origin set to
Pushes the branch to live (remote) and triggers a rebuild and deployment:
git push live <branch, i.e. master>
Resources: Set up deployment via GIT
Set up a NodeJS application for production
All commits should be one of three types:
new
: A new feature or additionchange
: A cheange to an existing feature or additionfix
: A fix for a certain posted issue or bugignore
: A commit that will not appear on the changelog
Example commit message:
(change) Updated README.md to reflect new changes in information
The below scripts have to be executed in a LINUX or WSL environment in order to work!
The following scripts are included for creating releases via Release
Major: Incompatible API changes were introduced:
$ npm run release:major
Minor: Functionality was added in a backwards-compatible manner
$ npm run release:minor
Patch: Backwards-compatible bug fixes were applied
$ npm run release:patch
Pre-releases
$ npm run release:pre
The documentation for this repo is written according to the API Blueprint spec, and uses Snowboard for parsing and rendering.
Note that Snowboard will have to be run in a Linux or WSL environment to work!
Install Snowboard
$ npm install -g snowboard
Then make sure you are in the project root folder and run
$ snowboard html -o ./www ./.apib/index.apib
#!/bin/sh
_TREE=/var/www/132nd-backend
_APPNAME=132-API
echo "Stopping PM2 services..."
pm2 stop $_APPNAME
echo "Checking out files..."
GIT_WORK_TREE=$_TREE git checkout -f
echo "Entering working folder..."
cd $_TREE
pwd
echo "Installing dependencies..."
npm install
ls -la $_TREE
echo "Building..."
npm run build
echo "Staring PM2 Services..."
pm2 start
echo " -- Finished -- "