mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-21 14:50:57 +00:00
14 lines
301 B
Markdown
14 lines
301 B
Markdown
# Local Development Server
|
|
|
|
Start the local development environment using Docker Compose.
|
|
|
|
Steps:
|
|
1. Stop any running containers
|
|
2. Start the development server in the background
|
|
|
|
```bash
|
|
docker compose down
|
|
docker compose up &
|
|
```
|
|
|
|
This gives you a clean restart of the local development environment. |