Communication server using the Nexlink protocol
Find a file
2026-01-05 16:07:30 +01:00
prisma Refactor part 1 2026-01-05 16:07:30 +01:00
src Refactor part 1 2026-01-05 16:07:30 +01:00
tests Refactor part 1 2026-01-05 16:07:30 +01:00
.gitignore Initial code 2025-12-22 21:58:15 -05:00
docker-compose.yml Initial code 2025-12-22 21:58:15 -05:00
env Rework authentication 2026-01-01 17:06:31 +01:00
LICENSE Initial commit 2025-12-23 01:47:50 +01:00
package-lock.json Rework authentication 2026-01-01 17:06:31 +01:00
package.json Refactor part 1 2026-01-05 16:07:30 +01:00
prisma.config.ts Initial code 2025-12-22 21:58:15 -05:00
README.md Update docs; Add invites to db 2025-12-24 13:09:33 +01:00
tsconfig.json Initial code 2025-12-22 21:58:15 -05:00

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