Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 1.1 KB

File metadata and controls

67 lines (43 loc) · 1.1 KB

Overlist

Quick Start

  1. Copy the repository:

    git clone https://github.com/Tonaeus/overlist.git
  2. Change the directory:

    cd overlist

Development

  1. Rebuild and run the containers:

    docker-compose -f docker-compose.dev.yml up -d --build
  2. Find the ports of the containers:

    docker-compose -f docker-compose.dev.yml ps
  3. Stop and remove the containers:

    docker-compose -f docker-compose.dev.yml down
  4. Access the containers at http://localhost:5173.

Staging

  1. Rebuild and run the containers:

    docker-compose -f docker-compose.yml up -d --build
  2. Find the ports of the containers:

    docker-compose -f docker-compose.yml ps
  3. Stop and remove the containers:

    docker-compose -f docker-compose.yml down
  4. Access the containers at http://localhost:4173.

Production

  1. Generate JWT secret

    node -e "console.log(require('crypto').randomBytes(64).toString('hex'))"