Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 972 Bytes

README.md

File metadata and controls

62 lines (45 loc) · 972 Bytes

WWW

Documentation

www

This is a Next.js project with Flare.

Prerequisites

  • Node.js 14.18.0 or later.

Install dependencies

yarn install

Run the project

yarn run dev

Build Docker Image

yarn run build

docker build -t www-lkmx-web-example .

You could run the project using this Docker Image.

For example:

Create a docker-compose.yml file.

version: '3'

services:
  www:
    container_name: www
    image: 'www-lkmx-web-example:latest'
    environment:
      - API_URL=http://api-example.dev-lk.mx
    ports:
      - "3000:80"

Run

$ docker-compose up -d www

And go to http://localhost:3000 to see the WWW project running.