Welcome to Flying Fox, a clone of Squirrel
View the live site here: Flying Fox
Flying Fox jumps into human flight, providing a place to look at and purchase wingsuits, tracking suits, and parachutes for skydiving and BASE jumping. This project is based off of the Squirrel website where they sell similar items and other equipment.
- Hosted on Render with a Postgres database
- Local Storage shopping cart
- Purchases/ Orders
- Reviews with AWS implementation
- Categories
- News
- Clone this repository.
git clone https://github.com/Sparky338/FlyingFox-Capstone.git
- Install dependencies
pipenv install -r requirements.txt
-
Create a .env file based on the example with proper settings for your development environment
-
Make sure the SQLite3 database connection URL is in the .env file
-
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, in a new terminal, get into react-app, install the npm packages, and start it
cd react-app
npm install
npm start