distribusi is a content management system for the web that produces static pages based on the file system.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
rra 51cdeaacf9 Merge branch 'package-it-up' of decentral1se/distribusi into master pirms 5 gadiem
distribusi Package it up! Get it in shape for PyPi. pirms 5 gadiem
scripts Package it up! Get it in shape for PyPi. pirms 5 gadiem
.gitignore Package it up! Get it in shape for PyPi. pirms 5 gadiem
LICENSE Package it up! Get it in shape for PyPi. pirms 5 gadiem
Makefile Package it up! Get it in shape for PyPi. pirms 5 gadiem
Pipfile Package it up! Get it in shape for PyPi. pirms 5 gadiem
Pipfile.lock Package it up! Get it in shape for PyPi. pirms 5 gadiem
README.md Package it up! Get it in shape for PyPi. pirms 5 gadiem
TODO.md Package it up! Get it in shape for PyPi. pirms 5 gadiem
setup.py Package it up! Get it in shape for PyPi. pirms 5 gadiem

README.md

Distribusi CMS

distribusi is a content management system for the web that produces static index pages based on folders in the filesystem. It is inspired by the automatic index functions featured in several web servers. It works by traversing the file system and directory hierarchy to automatically list all the files in the directory and providing them with html classes and tags for easy styling.

Requirements

While a Pip install will pull in Python dependencies, you might need system dependencies. This package requires two underlying packages. Those are python-magic, and pillow. Here are the installation documentation for those packages:

Installation

Using --user or a virtual environment is recommended:

$ pip install --user distribusi

Usage

Get help with:

$ distribusi --help

Make a distribusi of your home folder:

$ distribusi -d ~/

You will find that you now have an index.html in every folder.

Create a quick gallery for the web:

$ distribusi -d /path/to/my/photos -t

This creates an index.html with base64 encoded thumbnails.

Generate verbose output:

$ distribusi -v

Make an index of the archive page:

$ distribusi -d /var/www/archive/my_event -t -v

Change It

Install Pipenv and then run:

$ pipenv install --dev
$ pipenv run pip install -e .
$ pipenv run distribusi --help

Release It

$ make publish