An open API service indexing awesome lists of open source software.

https://github.com/jbussdieker/flaskr

Simple blog application from the Flask tutorial.
https://github.com/jbussdieker/flaskr

flask python

Last synced: about 2 months ago
JSON representation

Simple blog application from the Flask tutorial.

Awesome Lists containing this project

README

          

# Flaskr

Simple blog application from the Flask tutorial.

## Create the database

Run the following command in the project directory.

````
sqlite3 flaskr.db < schema.sql
````

## Starting the server

Starting the server can be done by simply calling the Python script.

````
python flaskr.py
````

## Running the tests

Running the test can be done using the following command:

````
py.test
````