A web application that allows users to create travel itineraries for their vacations.
- Visual Crossing Weather API Key: Sign up for a free account and get your API key.
- Google Palm API: Sign up for a free account and get your API key.
- Open up terminal and change directory (cd) until your current working directory is the directory containing "run.py".
- Type
pip install -r requirement.txt
. - Populate .env according to .example.env file.
- Type
python run.py
and hit enter. - Open up any web browser on the same machine and go to the address
localhost:5001
.
To use the database functionality, before you run the application for the first time, you will need to do the following.
- Type
mysql -u root -p < team1-schema.sql
into your terminal and hit enter. - Enter your mysql password.
- Type
mysql -u root -p < team1-data.sql
into your terminal and hit enter. - Enter your mysql password.