documentação do sistema

This commit is contained in:
Luis Eduardo Estevao
2026-05-05 16:12:52 -03:00
parent bbb5d68af1
commit 4652fea8fc
41 changed files with 1919 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
---
slug: deployment
category: operations
generatedAt: 2026-04-29T20:15:44.246Z
relevantFiles:
- docker-compose.yml
- Dockerfile
---
# How do I deploy this project?
## Deployment
### Docker
This project includes Docker configuration.
```bash
docker build -t app .
docker run -p 3000:3000 app
```