PetFriendly is way for users to find locations where they can bring their furry companions. Users can sign up and express thoughts/interests on locations by leaving a review. The PetFriendly live link can be found here: PetFriendly !!!
To build/run project locally, please follow these steps:
- Clone this repository
git clone https://github.com/AmMonsoon/petFriendly.git
- Install dependencies for
/app
and/react-app
for/app
pipenv install --dev -r dev-requirements.txt && pipenv install -r requirements.txt
for /react-app
npm install
- In the root directory create a
.env
based on.env.example
with proper settings - Setup your PostgresSQL user , password , database
- Enable your virtual environment
pipenv shell
- In your virtual environment, run your migrations and seeds
flask db upgrade
flask seed all
- To start your backend make sure your in your virtual environment or run the command
pipenv run flask run