/authorice

[CANCELED] Inha Univ. ICE Student Association Single Sign-On Service

Primary LanguageJavaScript

Authorice

Inha Univ. ICE Student Association Single Sign-On Service

Actions Status

Installation

git clone https://github.com/inha-ice/authorice.git

Server

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.

Quick Start

# build an image from a Dockerfile
docker build --tag authorice .

Development

# 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