tether/README.md

536 B

Tether

Communication server using the Nexlink protocol

Setting up development environment

Install dependencies

  • npm install

Set up and start postgres database (docker)

  • docker compose pull
  • docker compose up

Set up and start postgres database (podman)

  • podman-compose pull
  • podman-compose up

Set up .env file and fill in the environment variables

  • cp env .env

Create database migrations

  • npx prisma migrate dev

Generate database client

  • npx prisma generate

Start the server

  • npm start