Skip to content
This repository has been archived by the owner on Jul 21, 2020. It is now read-only.
/ authorice Public archive

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

Notifications You must be signed in to change notification settings

inha-ice/authorice

Repository files navigation

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