Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.17 KB

README.md

File metadata and controls

57 lines (37 loc) · 1.17 KB

Graph Generator

The Graph Generator is responsible for generating the service provider network

Run Locally

Checkout the project

git clone https://github.com/Graph-Analyzer/graph-generator.git

Configuration

No config required

Run

poetry init
poetry install
poetry run uvicorn src.main:app --reload --port 8082

Access

Formatting

You can format the code with the following command.

poetry run black src tests

Authors

License

This project is licensed under the MIT License.

Third Party Licenses

Third party licenses can be found in THIRD_PARTY_LICENSES.txt.

Regenerate them with this command.

poetry export > requirements.txt

# Replace <VirtualEnvPythonPath> with the path to the python executable found with "poetry env info --path"
poetry run python -m third_party_license_file_generator -r requirements.txt -p <VirtualEnvPythonPath> -o THIRD-PARTY-LICENSES.txt

rm requirements.txt