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

[CANCELED] Inha Univ. ICE Student Association Resource Management Service

Notifications You must be signed in to change notification settings

inha-ice/icepack

Repository files navigation

IcePack

Inha Univ. ICE Student Association Resource Management Service

Actions Status

Installation

git clone https://github.com/inha-ice/icepack.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 icepack .

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

Web

Development

# install dependencies
npm run install

# serve with hot reload at localhost:3000
npm run dev

# build for production and launch server
npm run build
npm run start

# lint codes
npm run lint

# lint codes and auto fix
npm run lint:fix

# generate static project
npm run generate

# deploy to GitHub Pages
npm run deploy

For detailed explanation on how things work, check out Nuxt.js docs.