This guide explains how to clone the repository, build the Docker image, and run the image to run the application.
git clone https://github.com/Vilen23/UABackend
cd UABackend
- make sure to add your db link in .env file
DATABASE_URL="{Your url here}"
docker build -t your-image-name .
docker run -p 8000:8000 your-image-name
git clone https://github.com/Vilen23/UABackend
cd UABackend
npm install
- In the .env file add your database url
DATABASE_URL="{Your DB url}"
npx prisma generate
tsc -b
node dist/index.js