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.
- Host: GitHub
- URL: https://github.com/jbussdieker/flaskr
- Owner: jbussdieker
- Created: 2016-05-09T06:34:23.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-09T06:49:11.000Z (about 10 years ago)
- Last Synced: 2026-03-30T17:47:56.517Z (3 months ago)
- Topics: flask, python
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
````