Skip to content

dennzimm/drawing-app-client

Repository files navigation

Drawing App Client


Prerequisite

Preparations

  • run sh setup.sh
  • fill the .env (project root) with your configuration or leave it as it is (default configurations)

      **~~ OR ~~**

  • copy example.env to .env (project root)
  • fill the .env (project root) with your configuration or leave it as it is (default configurations)

How to run this project (in production mode)

  • run make start or docker-compose -f docker-compose.prod.yml up -d --build
  • open the browser and go to http://localhost:1337 to see the app

How to run this project (in dev mode - for development)

  • run make dev or docker-compose -f docker-compose.prod.yml up -d --build
  • open the browser and go to http://localhost:3000 to see the app

How to stop this project

  • run make stop or docker-compose -f docker-compose.yml -f docker-compose.prod.yml stop