Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/20tab/autoindexer
A python script to implement the auto indexing feature (mod_autoindex in Apache)
https://github.com/20tab/autoindexer
Last synced: 21 days ago
JSON representation
A python script to implement the auto indexing feature (mod_autoindex in Apache)
- Host: GitHub
- URL: https://github.com/20tab/autoindexer
- Owner: 20tab
- License: mit
- Created: 2014-08-04T10:43:01.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-28T16:14:27.000Z (about 7 years ago)
- Last Synced: 2024-10-15T23:48:24.582Z (2 months ago)
- Language: Python
- Size: 59.6 KB
- Stars: 2
- Watchers: 6
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
autoindexer
===========A python script to implement the auto indexing feature (mod_autoindex in Apache)
requirements:
Jinja2
pathtools
watchdoguwsgi Example:
```
[uwsgi]
virtualenv = your_virtualenv_path
processes = 1plugins = python3
static-index = index.html # or your preferred index file
static-index = autoindex.html # the auto generated index default namestatic-map = /static/autoindexer/=your_lib_path/autoindexer/autoindexer/static
check-static = your_watched_root
# -d = root to watch; -t = jinja template to use; -i indexname to use
attach-daemon = %(virtualenv)/bin/python3 %(workarea_root)/autoindexer/autoindexer/indexer.py -d %(project_ root) -t %(workarea_root)/autoindexer/autoindexer/index.jinja -i autoindex.html
```