-
-
Notifications
You must be signed in to change notification settings - Fork 0
index
Michael Pisman edited this page Oct 19, 2023
·
1 revision
git clone https://github.com/unipoll/api.git
Or using GitHub CLI:
gh repo clone unipoll/api
$ pip install virtualenv
$ python -m venv venv
Activate the virtual environment with
$ source venv/bin/activate
$ pip install -r test-requirements.txt
You can use the main.py
script to run the app.
$ python -b main.py run --reload --port 8000
Alternatively, you can install the package in editable mode. Editable mode allows you to make changes to the source code and see the changes reflected immediately.
$ pip install -e .
$ unipoll-api run --reload --port 8000