Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codeamt/matchpredict
https://github.com/codeamt/matchpredict
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codeamt/matchpredict
- Owner: codeamt
- License: mit
- Created: 2024-01-27T04:20:28.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-01-28T09:09:53.000Z (11 months ago)
- Last Synced: 2024-03-12T12:45:09.635Z (10 months ago)
- Language: TypeScript
- Size: 3.01 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Match predictor
The Match Predictor codebase contains an app with several predictors for football results.
## Local development
Follow the instructions below to get the app up and running on your machine.
1. Install Python 3.10 and a recent version of NPM.
1. Install dependencies and run tests.
```shell
make install test
```
1. View the list of available tasks
```shell
make
```## Backend
Here are a few tasks that are useful when running the backend app.
Make sure they all run on your machine.1. Run tests
```shell
make backend/test1. Run model measurement tests
```shell
make backend/measure
```1. Run server
```shell
make backend/run
```1. Run an accuracy report
```shell
make backend/report
```## Frontend
Here are a few tasks that are useful when running the frontend app.
Make sure they all run on your machine.1. Run tests
```shell
make frontend/test
```1. Run server
```shell
make frontend/run
```## Integration tests
If it's helpful, you may want to run integration tests during development.
Do so with the tasks below.1. Run tests
```shell
make integration/test
```1. Interactive mode
```shell
make integration/run
```