Gimp Assets Sharing Server
Install system dependency:
apt install virtualenvwrapperCreate a virtualenv with Python3 and install dependencies:
mkvirtualenv wilber -p /usr/bin/python3
pip install -r wilber-web/wilber/requirements/base.txtCreate django database and the admin user:
cd wilber-web/wilber
cp .env.example .env
python manage.py migrate
python manage.py createsuperuser --username admin --email admin@wilber.orgRun deveploment server:
python manage.py runservergo to http://127.0.0.1:8000/admin and populate the database with some assets
go to http://127.0.0.1:8000 and see it working!