Skip to content

c0debrain/flask-cms

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#Flask CMS

##A full cms, implemented in python, built on top of Flask-XXL

for documentation on layout, concepts etc.. see the Flask-XXL wiki

Templates
Blocks
Pages
Blogs
tags
Comments

to use:

  • just put your settings in settings.py
  • then system and database info in the local_settings.py file

for a quick db setup just add

class LocalConfig(object):
    SQLALCHEMY_DATABASE_URI = "sqlite:///tmp.db"
    SECRET_KEY = "your key"

to local_settings.py (you have to create this file as well) and the in the shell type

python manage.py db upgrade

after a few seconds:

./start.sh

then you should see:

 * Running on http://0.0.0.0:8080/
 * Restarting with reloader

then just connect to your ip address: ie 192.168.1.155:8080 or 127.0.0.1:8080 or w/e yours is

About

a minimal CMS built on the pythonic MTV (model / template / view) pattern, implemented using the flask webframework

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.4%
  • HTML 5.3%
  • Python 1.7%
  • CSS 0.6%
  • PHP 0.0%
  • Erlang 0.0%