26 lines
415 B
Markdown
26 lines
415 B
Markdown
# FSYS MFL CCG Gameplay Digital
|
|
|
|
"Coopetitive" Match Gamemode from our DIY Print Edition of our Collectible Card Game for playing in a browser.
|
|
|
|
## 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
|
|
```
|