This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
-
Clone the repo
git clone https://github.com/TitansonFlutter/TourVago-Backend-Api.git
-
Install The Virtual Environment if none
python3 -m venv venv
-
Install Requirements.txt packages
pip3 install -r requirements.txt
-
Change the Database URI in the setting.py file if using local database
-
Run create .py
python3 create.py
-
Run the server
FLASK_APPLICATION=app FLASK_DEBUG=1 flask run
Some of git commands, throughout the project...
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request