Parkshare application for UB Hacking 2020
Frontend (JavaScript)
- axios
- formik
- node.js
- react-bootstrap
- react-iframe
- react-router
- react.js
- redux
Note: See frontend/package.json for a complete list of our dependencies for JavaScript
Backend (Python)
- aniso8601
- attrs
- bcrypt
- cffi
- click
- Flask
- Flask-Bcrypt
- flask-restx
- Flask-SQLAlchemy
- importlib-metadata
- itsdangerous
- Jinja2
- jsonschema
- MarkupSafe
- pkg-resources
- pycparser
- pyrsistent
- pytz
- six
- SQLAlchemy
- Werkzeug
- zipp
Note: See backend/requirements.txt for a complete list of our depencies for Python
- Go into the backend folder
$ cd backend
- Create a python 3 virtual environment
$ python3 -m venv env
- Source the virtual environment
$ source env/bin/activate/
- Download and install python libraries
$ pip install -r requirements.txt
- Run the flask application
$ python run.py
- Go into the frontend folder
$ cd frontend
- Install frontend dependencies
$ npm install
- Start the react application
$ npm run build