Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 1.1 KB

README.md

File metadata and controls

65 lines (43 loc) · 1.1 KB

This is a Next.js project bootstrapped with create-next-app.

Getting Started

Setup

Install dependencies:

yarn install

Configure app .env

Copy .env.example to .env

cp .env.example .env

Development

Run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.ts. The page auto-updates as you edit the file.

Production

Build the production ready application:

npm run build
# or
yarn build

Run the build project

npm run start
# or
yarn start

Run in Docker

First, install Docker and Docker Compose.

Then run the following command to start both the node and client web application.

./docker_run.sh

You can use either the latest tag or specific one in the docker-compose configuration.