https://github.com/cowprotocol/super-cow-bro
https://github.com/cowprotocol/super-cow-bro
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cowprotocol/super-cow-bro
- Owner: cowprotocol
- Created: 2023-01-16T10:09:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-18T15:33:14.000Z (over 3 years ago)
- Last Synced: 2025-03-30T06:15:31.083Z (about 1 year ago)
- Language: JavaScript
- Size: 316 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Super CoW Bro
Multi-player platform game.
Rules are simple!
- Avoid the deadly Sandwitch attacks 🥪. You touch a sandwitch, you are dead!
- Collect CoW Tokens! 🐮
- Try to reach the door to the next leve!
## Develop
```
# Install dependencies
yarn
# Run the Frontend and Backend
yarn start
```
Open http://localhost:8080
## Environment variables
- `PORT`: Port used for the services API
```
# Start the services in a different port
PORT=9090 yarn start
```
## Build with Docker
```
# Build
docker build . -t super-cow-bro
# Run
docker run -p 8080:8080 super-cow-bro
```
## Run with docker-compose
```
# Run
docker-compose up -d
# Check out the logs
docker-compose logs -f
```