Runtime:
Frontend:
Clone the project
git clone https://github.com/kmu-wink/wink-official-frontend
Go to the project directory
cd wink-official-frontend
Install dependencies
yarn install
Copy the config file
cp .env.template .env
Edit the config file
vim .env
Start the server
yarn start:dev
Build the Docker image
docker build -t wink-official-frontend:local .
Or pull the Docker image from Docker Hub
# master branch
docker pull kmuwink/wink-official-frontend:master
# develop branch
docker pull kmuwink/wink-official-frontend:develop
Run the Docker container
docker run --name (CONTAINER_NAME) -p 3000:3000 -d (IMAGE_NAME)