Communication server using the Nexlink protocol
| prisma | ||
| src | ||
| .gitignore | ||
| docker-compose.yml | ||
| env | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| prisma.config.ts | ||
| README.md | ||
| tsconfig.json | ||
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