mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 12:52:13 +01:00
19 lines
375 B
Markdown
19 lines
375 B
Markdown
# Explainegy
|
|
|
|
Markdown-based tutorials and articles webapp, built using Docker, NextJS & Prisma
|
|
|
|
## Getting Started
|
|
|
|
1. Create a `.env` file in the root directory and add the following variables:
|
|
|
|
```bash
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/postgres?schema=explainegy"
|
|
```
|
|
|
|
2. Run the following commands:
|
|
|
|
```bash
|
|
docker compose up -d
|
|
npm run dev
|
|
```
|