Add README.md and CC BY 4.0 license

This commit is contained in:
grovedruid
2026-05-15 17:39:30 +02:00
parent 7fc51f758e
commit ea747c64c6
3 changed files with 390 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
# 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
```