Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sabinadams/prisma-mongodb-advanced-workshop
https://github.com/sabinadams/prisma-mongodb-advanced-workshop
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sabinadams/prisma-mongodb-advanced-workshop
- Owner: sabinadams
- Created: 2022-04-27T05:33:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T14:25:19.000Z (11 months ago)
- Last Synced: 2024-10-09T21:58:49.516Z (about 1 month ago)
- Language: TypeScript
- Size: 313 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advanced Prisma with MongoDB
This repository contains the starter project for the **Advanced Prisma with MongoDB** workshop by [Sabin Adams](https://twitter.com/sabintehdev).
## Setup
### 1. Clone this repository
You can clone this repository with the following command:
```
git clone [email protected]:sabinadams/prisma-mongodb-advanced-workshop.git
```> Alternatively, you can also download the project via the GitHub UI. Click the green **Code**-button in the top-right corner and then click on **Download ZIP**.
### 2. Install dependencies
Navigate into the project directory and install the npm dependencies with the following command:
```
cd prisma-mongodb-workshop
npm install
```### 3. Start local MongoDB instance via Docker
The `docker-compose.yml` file in this repo lets you spin up an instance of a MongoDB database via [Docker](https://www.docker.com/). Run the following command to start your MongoDB instance:
```
docker-compose up -d
```