distribusi-verse: medium-tech web app content management system for the web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
crunk d5369bc142 sanitized css files using bleach 2 years ago
distribusi@e291e7497e Changed git submodule to my own fork 2 years ago
src sanitized css files using bleach 2 years ago
verse sanitized css files using bleach 2 years ago
.gitignore Main page shows lists of distribusis 2 years ago
.gitmodules Changed git submodule to my own fork 2 years ago
README.md being able to select your distribusi and to either update, new or delete 2 years ago
__init.py__ first commit of distribusi-verse 2 years ago
makefile first commit of distribusi-verse 2 years ago
notes.md for realsies this time:updated notes.md 2 years ago
pyproject.toml first commit of distribusi-verse 2 years ago
requirements.txt sanitized css files using bleach 2 years ago
setup.py sanitized css files using bleach 2 years ago

README.md

Distribusi verse

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

Distribusi was first conceptualized as a tool which supported a contribution by Dennis de Bel, Danny van der Kleij and Roel Roscam Abbing to the ruru house organized by Reinaart Vanhoe and the ruangrupa collective during 2016 Sonsbeek Biennale in Arnhem. During the biennale time the ruru house was a lively meeting place with a programme of discussions, workshops, lectures, culinary activities, performances, pop-up markets and even karaoke evenings, where curators and Arnhemmers met.

The contribution consisted of setting up distribusi. ruruhuis.nl (distribusi is bahasa Indonesian for 'distribution') which was a website connected to a server in the space. Rather than a hidden administrative interface, the server was present and visible and an invitation was extended to visitors to use it to publish material online. This was done by inserting a USB-drive into any of the ports. The distribusi script would then turn the contents of that stick it into a website. Once the USB-drive was removed that website was no longer on-line. Over time distribusi.ruruhuis.nl hosted photos, books and movies. The website is now off-line but the tool that was used to make it is still used in Varia.

This particular work in progress project is an attempt to make distribusi into a webinterface that can be operated remotely without any knowlegde of CLI. Trying to somehow combine the ideas of distribusi with the ideas of a tildeverse or Tilde club , but also be neither of these ideas.

This project is made for Autonomous Practices at the WDKA in Rotterdam.

Work in progress

Amazingly helpful testers, currently I am writing some database upgrades and new functionalities, and they don't work, so have some patience with testing the in development material.

Start your engines!

$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt

Database, Databass

The git doesn't come with a database of users, you have to make one. make sure you have the virtual environment enabled. the content of the data directory is in gitignore because we don't want to version control the database and other files that might end up there later.

$ cd verse

You might need to remove the migrations folder, this is where flask-migrate keeps track of all the database upgrades and migrations. but so far we have none and for deploydb to work this folder needs to not be there yet.

$ rm -r migrations
$ python deploydb.py

Database is made and put in the data folder. ready to go

Flask scripts

The flask scripts are in the folder verse, while the distribusi code is in the folder distribusi, I would like to keep them separated so we know, what is the webapplication and what is the original distribusi software, this might also allow power users with SSH later on.

$ cd verse
$ python start.py

Distribusi

This is currently added as a git submodule but I have no clue how that actually works

  • to install a local git repository into your virtual env pip you can try.
$ pip install git+file:///home/full/path/to/distribusi#egg=distribusi