21 lines
362 B
Markdown
21 lines
362 B
Markdown
# Tether
|
|
|
|
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
|