KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
medium-nest-prisma
★ 17
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
dbt-python-hands-on-lab-snowpark
:
No description available.
PROTO
:
No description available.
Django-AI-site
:
Video: https://www.youtube.com/watch?v=4kI9TqCS6uY | The Django AI Site is a web application that combines Django with AI technologies to help users solve code problems.
awesome-leetcode-algorithms-solutions
:
No description available.
SSRF
:
SSRF docker file
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
medium-nest-prisma
?
Download (.md)
<!-- <p align="center"> --> <!-- <a href="https://github.com/mr-scrpt/medium-nest-prisma" target="blank"> --> <!-- <img src="https://github.com/mr-scrpt/medium-nest-prisma/project-logo.png" alt="Project Logo" /> --> <!-- </a> --> <!-- </p> --> #  > ### NestJS codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld-example-apps) API spec. --- <!-- ## Description --> <!-- Backend on NestJs using Prisma for [RealWorld](https://github.com/gothinkster/realworld) projects --> ## About The project uses GRASP and SOLID patterns. There is an emphasis on the division of responsibility, layered architecture ## Note The database for the project is used in a docker container, so you will need tools to work with the docker ## Download ```bash git clone https://github.com/mr-scrpt/medium-nest-prisma.git cd medium-nest-prisma ``` ## Install dependencies ```bash $ yarn install ``` ## Start Postgres DB on docker container ```bash $ docker-compose up -d ``` ## Run migration for DB ```bash $ yarn migrate:dev ``` ## (Optional) Add seed data ```bash $ yarn seed:dev ``` ## Running the app ```bash # development $ yarn start:dev # prod mode $ yarn run start:prod ```