This project tracks the progress of weat Inc's application. The project is open source, and is meant to make creating a food delivery application easy. Feel free to contribute to this project, and to create any issues that you may find!
Here are some of the features that we have built and are currently working on:
- An intuitive database that mimics Firebase's Firestore, build using Python3.
- An backend-api for interacting and serving data from the database.
- Coming up: a frontend build from Python that mimics user actions
First clone this repository
git clone https://github.com/weatosd/weat.git
Navigate to ./backend
, specify the data you want the database to have in api.py's db = Database(data=initialData)
, where initialData follows the proper format, set the FLASK_APP environment variable to api (Flask's docs), and type flask run
.
Head over to weat's documentation!
- pytest runs test_database.py that tests the Database's functions and structure.