From 4f08e4d57f55cc57caf433c5aad7d9298cf2634075868c4bc2211d77957af5a0 Mon Sep 17 00:00:00 2001 From: aslan Date: Wed, 24 Dec 2025 05:17:26 -0500 Subject: [PATCH] Add development readme --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c18c44..e5030f5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ # Tether -Communication server using the Nexlink protocol \ No newline at end of file +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