Internal REST API for [ClassPortal][classportal].
Built with [Node.js][nodejs], [TypeScript][typescript], [Restify][restify], and [Mongoose][mongoose].
.
├── app
│ ├── auth.ts # Shared methods for token authentication
│ ├── controllers
│ │ ├── student.controller.ts # Define controller methods for student API
│ │ └── ... # etc.
│ ├── models
│ │ ├── student.model.ts # Define Mongoose schema for student model
│ │ └── ... # etc.
│ └── routes # Routes defined in this folder are dynamically loaded by the Restify server
│ ├── student.route.ts # Declare routes for student API and the handlers executed in each route
│ └── ... # etc.
├── config/
│ ├── env.ts # Environment settings
│ └── restify.ts # Restify server creation code
├── coverage # Istanbul output
├── node_modules/ # 3rd-party libraries and utilities
├── test/ # Unit and integration tests
├── utils/
│ └── logger.ts # Bunyan logger
├── debug.log # Mongoose debug log
├── error.log # Bunyan error log
├── package.json # The list of project dependencies and NPM
├── tsconfig.json # Rules for compiling TS
├── tslint.json # Rules for linting TS
└── server.ts # Main entry point - Instantiate Restify server and open MongoDB connection
git clone https://github.com/ubccpsc/classportal-backend.git
yarn install
Lint with TSLint.
Rules are configured in tslint.json
yarn run lint
Test with Mocha + Supertest:
$ yarn run test
With logger enabled:
$ yarn run test:debug
With instanbul coverage:
$ yarn run cover
Development build; this will start the app server on localhost:5000
:
yarn run dev
Production build:
yarn run start:prod
You will need to open an SSH tunnel to the hosted server if you want to connect to the database (only do this if you are not working on dataloss operations!):
ssh [email protected] -L 27017:127.0.0.1:27017
TBD.
Once you have installed Mongo, Node, and the packages you will need to configure the environment.
Note: node_modules/passport-github/lib/strategy.js
will need to be modified to update the OAuth target.
- Create a
.env
file with the structure below. - Update the
.env
file with appropriate references. - Ensure the certificate files are configured correctly.
Warning: DO NOT set TEST_DB to the same value as PROD_DB, because the test suite overwrites TEST_DB multiple times.
APP_NAME="UBC Original Class Portal https://github.com/ubccpsc/classportal"
GITHUB_CLIENT_ID="999999999999999999"
GITHUB_CLIENT_SECRET="999999999999999999999999999999999999"
SSL_KEY_PATH="/path/to/key.key"
SSL_CERT_PATH="/path/to/crt.crt"
SSL_INT_CERT_PATH="/path/to/ca-cacerts.pem"
GITHUB_AUTH_TOKEN="token 999999999999999999999999999999999999111"
GITHUB_USER_NAME="username"
DEV_HOST=localhost
DEV_PORT=5000
DEV_DB=mongodb://localhost:27017/development
DEV_ADMINS=admin1 admin2 admin3
DEV_SUPER_ADMIN=superadmin1
NODE_TLS_REJECT_UNAUTHORIZED=1
TEST_HOST=localhost
TEST_PORT=9000
TEST_DB=mongodb://localhost:27017/test
TEST_ADMINS=admin1 admin2 admin3
TEST_SUPER_ADMIN=superadmin1
NODE_TLS_REJECT_UNAUTHORIZED=0
PROD_HOST=localhost
PROD_PORT=8080
PROD_DB=mongodb://localhost:27017/production
PROD_ADMINS=admin1 admin2 admin3
PROD_SUPER_ADMIN=superadmin1
- on portal.cs.ubc.ca
cd /var/www/autotest
./node_modules/.bin/forever list
sudo ./node_modules/.bin/forever list
- check containers:
docker stats
- start containers
sudo systemctl start docker
./node_modules/.bin/forever stop 0 // (just the one corresponding to App.js)
yarn run startf
- start backend & frontend
cd /var/www/classportal-backend
yarn run start:prod