snake-cms | Automatically exported from code.google.com/p/snake-cms
kandi X-RAY | snake-cms Summary
kandi X-RAY | snake-cms Summary
snake-cms is a Python library. snake-cms has no bugs, it has no vulnerabilities and it has low support. However snake-cms build file is not available. You can download it from GitHub.
This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
Support
Quality
Security
License
Reuse
Support
snake-cms has a low active ecosystem.
It has 0 star(s) with 0 fork(s). There are no watchers for this library.
It had no major release in the last 6 months.
There are 1 open issues and 0 have been closed. There are no pull requests.
It has a neutral sentiment in the developer community.
The latest version of snake-cms is current.
Quality
snake-cms has no bugs reported.
Security
snake-cms has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
License
snake-cms does not have a standard license declared.
Check the repository for any license declaration and review the terms closely.
Without a license, all rights are reserved, and you cannot use the library in your applications.
Reuse
snake-cms releases are not available. You will need to build from source code and install.
snake-cms has no build file. You will be need to create the build yourself to build the component from source.
Installation instructions are available. Examples and code snippets are not available.
Top functions reviewed by kandi - BETA
kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of snake-cms
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of snake-cms
snake-cms Key Features
No Key Features are available at this moment for snake-cms.
snake-cms Examples and Code Snippets
No Code Snippets are available at this moment for snake-cms.
Community Discussions
No Community Discussions are available at this moment for snake-cms.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install snake-cms
Install apache2 web server. sudo apt-get install apache2. Install mod-wsgi for Apache2. sudo apt-get install libapache2-mod-wsgi. Install Django latest version or 1.2+ at least. Download the latest version via svn, svn co http://code.djangoproject.com/svn/django/trunk/ and install cd trunk sudo python setup.py install. Install PIL sudo apt-get install python-imaging. Go to a new directory, I use /var/django-code/. Download snake-cms-1.0.tar.gz from snake-cms at Google Code. wget http://snake-cms.googlecode.com/files/snake-cms-1.0.tar.gz Unpack snake-cms tar -xvzf snake-cms-1.0.tar.gz. Check snake-cms/cms/settings.py, at least the following lines,. It is always good to set a name and an admin mail address, ADMINS = ( ('Admin', 'webmaster@example.com'), ). If you want to get a mail when someone comments you need to provide a mail server. DEFAULT_FROM_EMAIL = 'postmaster@example.com' EMAIL_HOST = 'smtp.example.com' EMAIL_PORT = '25'. If you use the link portion of the cms and want the links posted to del.icio.us you need to provide your account credentials. DELICIOUS_USER = '' DELICIOUS_PASSWORD = ''. Set your time zone, TIME_ZONE = 'Europe/Stockholm'. Set this to a random string -- the longer, the better. SECRET_KEY = 'SET A SECRET KEY'. If you want comments checked against Akismet for spam provide an Akismet API key. See http://akismet.com/personal/ AKISMET_API_KEY = ''. You have to make both the directory snake-cms/db/ and the file snake-cms/db/snake-cms.sqlite3 readable and writable by your web server user. (In Ubuntu that user is www-data). Configure apache2 to serve up snake-cms, add the following to /etc/apache2/sites-available/default. #Snake-cms WSGIScriptAlias / "[path to snake-cms]/snake-cms/snake-cms.wsgi" WSGIDaemonProcess snake-cms processes=5 threads=1 WSGIProcessGroup snake-cms Alias /media/ "[path to snake-cms]/snake-cms/media/" <Directory "[path to snake-cms]/snake-cms/media/"> DirectoryIndex None Options FollowSymLinks AllowOverride None Order allow,deny allow from all. The login for the admin page is admin/admin123. Don't forget to create a new user and delete the admin account.
Install apache2 web server. sudo apt-get install apache2. Install mod-wsgi for Apache2. sudo apt-get install libapache2-mod-wsgi. Install Django latest version. Download the latest version via svn, svn co http://code.djangoproject.com/svn/django/trunk/ and install cd trunk sudo python setup.py install. Go to a new directory, I use /var/django-code/. Download snake-cms hg clone https://snake-cms.googlecode.com/hg/ snake-cms. Download django-tagging latest version svn checkout http://django-tagging.googlecode.com/svn/trunk/ django-tagging Copy the directory django-tagging/tagging in to snake-cms, cp -r django-tagging/tagging/ snake-cms/. Download django-filebrowser latest version svn checkout http://django-filebrowser.googlecode.com/svn/trunk/filebrowser/ filebrowser Copy the directory filebrowser in to snake-cms, cp -r filebrowser/ snake-cms/. Symlink filebrowser media to snake-cms media folder, cd snake-cms/media/ ln -s ../filebrowser/media/filebrowser/ filebrowser. Install sorl.thumbnail latest version hg clone https://sorl-thumbnail.googlecode.com/hg/ sorl-thumbnail Copy the directory sorl-thumbnail/sorl in to snake-cms, cp -r sorl-thumbnail/sorl snake-cms/. Install PIL sudo apt-get install python-imaging. Download django-grappelli svn checkout http://django-grappelli.googlecode.com/svn/trunk/grappelli/ grappelli Copy the directory grappelli in to snake-cms, cp -r grappelli/ snake-cms/. Symlink grappelli media to snake-cms media folder, cd snake-cms/media/ ln -s ../grappelli/media/ admin. Symlink grappelli templates to snake-cms templates folder, cd snake-cms/templates/ ln -s ../grappelli/templates/admin/ admin. Install python-markdown 2.0 wget http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz tar xvzf Markdown-2.0.tar.gz cp -r markdown-2.0/markdown snake-cms/. Rename snake-cms/cms/cms_settings.py to settings.py. Check snake-cms/cms/settings.py, at least the following lines,. It is always good to set a name and an admin mail address, ADMINS = ( ('Admin', 'webmaster@example.com'), ). If you want to get a mail when someone comments you need to provide a mail server. DEFAULT_FROM_EMAIL = 'postmaster@example.com' EMAIL_HOST = 'smtp.example.com' EMAIL_PORT = '25'. If you use the link portion of the cms and want the links posted to del.icio.us you need to provide your account credentials. DELICIOUS_USER = '' DELICIOUS_PASSWORD = ''. If you want to use a sqlite3 database you need to create a directory in snake-cms called db and in that directory create a file called snake-cms.sqlite3. Then you have to make both the newly created directory and the file readable and writable by your web servers user. (In Ubuntu that user is www-data).
Install apache2 web server. sudo apt-get install apache2. Install mod-wsgi for Apache2. sudo apt-get install libapache2-mod-wsgi. Install Django latest version. Download the latest version via svn, svn co http://code.djangoproject.com/svn/django/trunk/ and install cd trunk sudo python setup.py install. Go to a new directory, I use /var/django-code/. Download snake-cms hg clone https://snake-cms.googlecode.com/hg/ snake-cms. Download django-tagging latest version svn checkout http://django-tagging.googlecode.com/svn/trunk/ django-tagging Copy the directory django-tagging/tagging in to snake-cms, cp -r django-tagging/tagging/ snake-cms/. Download django-filebrowser latest version svn checkout http://django-filebrowser.googlecode.com/svn/trunk/filebrowser/ filebrowser Copy the directory filebrowser in to snake-cms, cp -r filebrowser/ snake-cms/. Symlink filebrowser media to snake-cms media folder, cd snake-cms/media/ ln -s ../filebrowser/media/filebrowser/ filebrowser. Install sorl.thumbnail latest version hg clone https://sorl-thumbnail.googlecode.com/hg/ sorl-thumbnail Copy the directory sorl-thumbnail/sorl in to snake-cms, cp -r sorl-thumbnail/sorl snake-cms/. Install PIL sudo apt-get install python-imaging. Download django-grappelli svn checkout http://django-grappelli.googlecode.com/svn/trunk/grappelli/ grappelli Copy the directory grappelli in to snake-cms, cp -r grappelli/ snake-cms/. Symlink grappelli media to snake-cms media folder, cd snake-cms/media/ ln -s ../grappelli/media/ admin. Symlink grappelli templates to snake-cms templates folder, cd snake-cms/templates/ ln -s ../grappelli/templates/admin/ admin. Install python-markdown 2.0 wget http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz tar xvzf Markdown-2.0.tar.gz cp -r markdown-2.0/markdown snake-cms/. Rename snake-cms/cms/cms_settings.py to settings.py. Check snake-cms/cms/settings.py, at least the following lines,. It is always good to set a name and an admin mail address, ADMINS = ( ('Admin', 'webmaster@example.com'), ). If you want to get a mail when someone comments you need to provide a mail server. DEFAULT_FROM_EMAIL = 'postmaster@example.com' EMAIL_HOST = 'smtp.example.com' EMAIL_PORT = '25'. If you use the link portion of the cms and want the links posted to del.icio.us you need to provide your account credentials. DELICIOUS_USER = '' DELICIOUS_PASSWORD = ''. If you want to use a sqlite3 database you need to create a directory in snake-cms called db and in that directory create a file called snake-cms.sqlite3. Then you have to make both the newly created directory and the file readable and writable by your web servers user. (In Ubuntu that user is www-data).
Support
For any new features, suggestions and bugs create an issue on GitHub.
If you have any questions check and ask questions on community page Stack Overflow .
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page