Inha Univ. ICE Student Association Single Sign-On Service
git clone https://github.com/inha-ice/authorice.git
The server source code is placed in the apis directory.
Change directory before you follow guides below:
cd ./apis/
You need .env
to load environment variables. See example.
# build an image from a Dockerfile
docker build --tag authorice .
# install dependencies
npm run install
# serve with hot reload at localhost:3000
npm run dev
# launch server at localhost:3000
npm start
# run integration test
npm test
# lint codes
npm run lint
# lint codes and auto fix
npm run lint:fix