Skip to content

KMU-WINK/wink-official-frontend

Repository files navigation

Wink Official Frontend

Tech Stack

Runtime:

  • nodejs
  • typescript

Frontend:

  • nextjs

Related

Wink Official Backend

Wink Official Deploy

Run Locally

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

Run Locally with Docker

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)

Authors