https://github.com/nishantcoder108/beatq
https://github.com/nishantcoder108/beatq
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nishantcoder108/beatq
- Owner: NishantCoder108
- Created: 2024-09-06T21:02:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-09-07T20:17:58.000Z (10 months ago)
- Last Synced: 2025-03-28T18:17:03.656Z (3 months ago)
- Language: TypeScript
- Size: 124 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Run by Docker
- create dockerfile where all configuration things are written
- ```js
docker build -t BeatQ .```
- ```
docker run BeatQ -p 3000:3000
```## Note
1. For running prisma , we must ensure migrate dev and then we can run db.
2. For running postgres , we must to see his password , username and localhost```bash
docker run --name postgres -e POSTGRES_PASSWORD=mysecretpassword -e POSTGRES_DB=muzerdb -p 5432:5432 -d postgres
```3. Put in .env file
```bash
DATABASE_URL=postgres://postgres:mysecretpassword@localhost:5432/db
```