Developed with:
· Python
· Flask
· Jinja
· PostgreSQL
· SQLAlchemy
· WTForms
· Bcrypt
· Bootstrap
With Warbler you can:
- Follow and unfollow users and see their latest posts on your feed.
- Favorite other users' posts.
- Search users by username using fuzzy matching.
- Create a profile with your bio, location, and custom images.
- Edit and delete your own posts and profile information.
git clone https://github.com/violet-kester/warbler.git
python3 -m venv venv
source venv/bin/activate
(venv) pip3 install -r requirements.txt
(venv) createdb warbler
(venv) python seed.py
SECRET_KEY=abc123
DATABASE_URL=postgresql:///warbler
(venv) flask run
Open the app in your browser at http://localhost:5000.