treadl/api
2024-10-27 20:00:33 +00:00
..
api Resolve lint issues 2024-10-27 20:00:33 +00:00
migrations Add API linter 2024-10-06 10:30:49 +01:00
util Move preview generation into a thread 2024-10-24 15:18:10 +01:00
.dockerignore initial commit 2021-11-11 12:59:19 +00:00
.gitignore Add a migration script from old URL string format to new image files 2023-06-10 20:18:31 +01:00
app.py Resolve lint issues 2024-10-27 20:00:33 +00:00
bucket-policy-dev.json Add ability to auto-extend warp and weft 2023-10-28 16:17:53 -04:00
bucket-policy.json Add ability to auto-extend warp and weft 2023-10-28 16:17:53 -04:00
Dockerfile Update Docker base image 2024-10-24 11:38:08 +01:00
envfile.template merged CI changes 2023-04-22 15:16:41 +01:00
firebase.json.template Improved Dockerfile efficiency 2022-05-16 21:27:44 +00:00
lint.sh Add API linter 2024-10-06 10:30:49 +01:00
poetry.lock Added webarg checks for account endpoints 2024-10-06 11:28:09 +01:00
pyproject.toml Added webarg checks for account endpoints 2024-10-06 11:28:09 +01:00
README.md Added more useful instructions to the READMEs 2022-05-08 17:48:26 +00:00

Treadl web API

This directory contains the code for the back-end Treadl API.

Run locally

To run this web API locally, follow the steps below.

1. Run a local MongoDB instance

Install MongoDB for your operating system and then launch a local version in the background. For example:

$ mongod --fork --dbpath=/path/to/.mongo --logpath /dev/null

(Remember to restart the database upon system restart or if the instance stops for another reason.)

2. Create and activate a virtual environment

Install and activate the environment using virtualenv:

$ virtualenv -p python3 .venv # You only need to run this the first time
$ source .venv/bin/activate

3. Install dependencies

We use Poetry to manage dependencies. If you don't have this yet, please refer to the Poetry documentation to install it. Once done, install the dependencies (ensuring you have sourced your virtualenv first):

$ poetry install

4. Create an envfile

Copy the template file into a new envfile:

$ cp envfile.template envfile

If you need to, make any changes to your new envfile. Note that changes are probably not required if you are running this locally. When happy, you can source this file too:

$ source envfile

5. Run the API

Ensure that both the virtualenv and envfile have been loaded into the environment:

$ source .venv/bin/activate
$ source envfile

Now you can run the API:

$ flask run

The API will now be available on port 2001.

Remember that you will need a local instance of MongoDB running for the API to connect to.