Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhruv-2003/fantasy-mru
https://github.com/dhruv-2003/fantasy-mru
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dhruv-2003/fantasy-mru
- Owner: Dhruv-2003
- Created: 2024-06-15T13:32:51.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-17T09:43:24.000Z (5 months ago)
- Last Synced: 2024-10-08T03:41:35.033Z (about 1 month ago)
- Language: TypeScript
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Betting-MRU
Initialized using [@stackr/sdk](https://www.stackrlabs.xyz/)
## How to run?
### Run using Node.js :rocket:
```bash
npm start
```### Run using Docker :whale:
- Build the image using the following command: (make sure you replace \`\` with the actual value)
```bash
# For Linux
docker build -t Betting-MRU:latest . --build-arg NPM_TOKEN=# For Mac with Apple Silicon chips
docker buildx build --platform linux/amd64,linux/arm64 -t Betting-MRU:latest . --build-arg NPM_TOKEN=
```- Run the Docker container using the following command:
```bash
# If using SQLite as the datastore
docker run -v ./db.sqlite:/app/db.sqlite -p : --name=Betting-MRU -it Betting-MRU:latest# If using other URI based datastores
docker run -p : --name=Betting-MRU -it Betting-MRU:latest
```