🌱🍃🌿🌱🌵Inspired by the joy of raising houseplants 🌱🍃🌿🌱🌵
Looking at photos of nature could lower stress and lighten moods.
- Flask - web Framework
- SQLAlchemy - ORM
- Flask-WTF - forms
- Jinja2 - templating engine
- flask-login - logging users
- flask-bcrypt - password hashing
- nose2 - unit testing
- boto3 - upload images to S3
This application is written using Python 3.7 The database used is PostgreSQL.
- App deployed on Heroku
- Uploaded images stored within Amazon S3
Deployed application can be found here: https://plants-app-api.herokuapp.com/
- clone this repo
git clone [email protected]:estherjsuh/plants.git
- cd into plants
cd plants
- create virual environment and install dependencies
virtualenv venv --python=python3.7
source venv/bin/activate
pip install -r requirements.txt
- run python
python
import project
app = project.create_app()
app.run()
From the root directory, run:
nose2