A framework for the publication of scientific databases
This project is still in development. gaia.aip.de is based on this version of Daiquiri.
The legacy version of Daiquiri written in PHP can be found here.
apt-get install -y git build-essential libxml2-dev libxslt-dev zlib1g-dev libssl-dev
apt-get install -y mariadb-client mariadb-server libmariadb-dev libmariadbclient-dev libmariadb-dev-compat
More about Daiquiri's prerequisites including different Linux distributions can be found here.
git clone https://github.com/django-daiquiri/app app
cd app
python3 -m venv env
source env/bin/activate
pip install django-daiquiri mysqlclient
cp config/settings/sample.local.py config/settings/local.py
mkdir log download
./manage.py sqlcreate # shows the commands to be executed on the database
./manage.py migrate # creates database and tables
./manage.py migrate --database=tap # creates TAP_SCHEMA
./manage.py createsuperuser # creates admin user
./manage.py runserver # runs a development server
Navigate to http://localhost:8000 in your browser.
- Main documenation: django-daiquiri.github.io