Skip to content

Flask-Planet/flask-planet.org

Repository files navigation

flask-planet.org

Community Website for Flask

The flask-planet.org website is a community website for the Flask microframework. It aggregates news, articles and resources for the Flask framework.

Contributing

If you want to contribute to the website, clone this repository and create a new branch. Then add your changes, commit, push and create a pull request.

Contributing to the website content

For News / Articles see: Artilce Repo

For Resources see: Resources Repo

Running the website locally

To run the website locally, you need to install the dependencies first:

$ python3 -m venv venv
$ source venv/bin/activate
(venv)$ pip install -r requirements.txt

Then you can run the website with:

(venv)$ flask run

cli commands

# Reset the database, drops then creates all tables
(venv)$ flask reset-db
# Create a new user
(venv)$ flask create-user
# Create example data
(venv)$ flask example-data

Live website is hosted in docker that is not automatically deployed.

Releases

No releases published

Packages