https://github.com/hollyabrams/warbler
Full-stack Twitter clone built with Python libraries and frameworks.
https://github.com/hollyabrams/warbler
bootstrap flask psycopg2-binary python sqlachemy wtforms
Last synced: about 2 months ago
JSON representation
Full-stack Twitter clone built with Python libraries and frameworks.
- Host: GitHub
- URL: https://github.com/hollyabrams/warbler
- Owner: hollyabrams
- Created: 2022-11-16T17:15:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T18:28:15.000Z (over 2 years ago)
- Last Synced: 2025-01-14T12:25:29.688Z (3 months ago)
- Topics: bootstrap, flask, psycopg2-binary, python, sqlachemy, wtforms
- Language: Python
- Homepage:
- Size: 1.41 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Warbler
Twitter clone built with Flask, WTForms, PostgresSQL and Flask SQLAlchemy.## Setup
Create Python virtual environment:
```
$ python -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
```Setup database and populate:
```
(venv) $ createdb warbler
(venv) $ python seed.py
```Start server:
```
(venv) $ flask run
```Open http://localhost:5000/ to view project in the browser.
## Built With
* [Flask](https://flask.palletsprojects.com/en/1.1.x/)
* [Jinja](https://jinja.palletsprojects.com/en/2.11.x/)
* [WTForms](https://wtforms.readthedocs.io/en/2.3.x/)
* [PostgresSQL](https://www.postgresql.org/)
* [Flask SQLAlchemy](https://flask-sqlalchemy.palletsprojects.com/en/2.x/)
* [Twitter Bootstrap](https://getbootstrap.com/)