Coodise, a homeserver in Django for interfacing (and streaming) content from local Storage throught HTTP
Coodise source code
for now, devel
Make sure you are using latest version of python 3.6
or higher
- Install pip with your favourite package manager (skip if already installed):
foo@bar:~/$ sudo apt install python3-pip
- install django:
foo@bar:~/$ pip3 install django
- clone this repo:
foo@bar:~/$ git clone https://github.com/theMladyPan/coodise.git
- inside repo, link your cloud and run server
foo@bar:~/$ cd coodise
foo@bar:~/coodise$ ln -s /path/to/my/storage ./Cloud
foo@bar:~/coodise$ python3 manage.py runserver
in coodise/settings.py, line ALLOWED_HOSTS, change it to desired hosts, set to [0] for everybody or temporarily run with:
foo@bar:~/coodise$ python3 manage.py runserver 0:8000