Petmeeter is a soft clone of Petfinder, with a twist. It is a website where users can post animals that they are rehoming, search for and favorite animals matching their home's needs, and ultimately find a cute animal companion to bring into their families and hearts. 💜
Check out Petmeeter
MVP Feature List | Database Scheme | User Stories | Wire Frames
Clone this repository (only this branch)
Install dependencies
pipenv install -r requirements.txt
Create a .env file based on the provided .env.example with proper settings for your development environment
Make sure the SQLite3 database connection URL is in the .env file
This starter organizes all tables inside the flask_schema
schema, defined
by the SCHEMA
environment variable. Replace the value for
SCHEMA
with a unique name, making sure you use the snake_case
convention.
Get into your pipenv, migrate your database, seed your database, and run your Flask app
pipenv shell
flask db upgrade
flask seed all
flask run
To run the React App in development, checkout the README inside the react-app
directory.