Files
fsys_MFL_CCG_Gameplay_Digital/README.md
T
2026-05-15 17:39:30 +02:00

26 lines
410 B
Markdown

# FSYS MFL CCG Gameplay Digital
A digital card game about sustainable food systems, based on the FSYS MFL (My Farming Life) CCG framework.
## Development
```bash
npm install
npm run dev
```
## Production Build
```bash
npm run build
```
The static output is in `dist/` — serve with any web server.
## Docker
```bash
docker build -t fsys-mfl-ccg:latest .
docker run -d -p 80:80 fsys-mfl-ccg:latest
```