Add development readme

This commit is contained in:
Aslan 2025-12-24 05:17:26 -05:00
parent 5dec454afb
commit 4f08e4d57f

View file

@ -1,3 +1,21 @@
# Tether # Tether
Communication server using the Nexlink protocol Communication server using the Nexlink protocol
## Setting up development environment
### Install dependencies
- npm install
### Set up and start postgres database
- docker compose pull
- docker compose up
### Create database migrations
- npx prisma migrate dev
### Generate database client
- npx prisma generate
### Start the server
- npm start