https://github.com/marcpage/financial_game
Website that hosts a real-life financial game
https://github.com/marcpage/financial_game
Last synced: 5 months ago
JSON representation
Website that hosts a real-life financial game
- Host: GitHub
- URL: https://github.com/marcpage/financial_game
- Owner: marcpage
- License: unlicense
- Created: 2023-01-07T19:35:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-20T16:02:22.000Z (about 1 year ago)
- Last Synced: 2025-01-09T11:53:33.280Z (6 months ago)
- Language: Python
- Size: 218 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README


[](https://github.com/marcpage/financial_game/commits)
[](https://github.com/marcpage/financial_game/commits)

[](https://github.com/marcpage/financial_game)
[](https://github.com/marcpage/financial_game/issues)
[](https://github.com/marcpage?tab=followers)
[](https://github.com/marcpage/financial_game/watchers)# financial_game
Website that hosts a real-life financial game
# Contributions
Before submitting, make sure to run `black`, `pylint`, and `flake8` and ensure test coverage is at 100%.
If you're on macOS or Linux, you can just run `python3 pr_build.py format` which will do all this for you.# Runing the server
On macOS or Linux:
```bash
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
python3 -m financial_game
```On Windows:
```bash
py -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
py -m financial_game
```It will create:
- **macOS**: `~/Library/Preferences/financial_game.yaml`
- **Linux**: `~/.financial_game.yaml`
- **Windows**: `%LOCALAPPDATA%\financial_game.yaml`You can use a different location by specifying `--settings `.
This file contains many of the parameters you can pass (or did pass) on the command line.
To get the full list of options on the command line: `python3 -m financial_game --help`.