Skip to content

django-daiquiri/daiquiri

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Daiquiri (Django version)

A framework for the publication of scientific databases

pytest Workflow Status Coverage Status License Latest Version

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.

Quick start

Install prerequisites

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.

Fork the daiquiri-app

git clone https://github.com/django-daiquiri/app app

Set up the virtual enviroment and install dependencies

cd app
python3 -m venv env
source env/bin/activate
pip install django-daiquiri mysqlclient

Setup Daiquiri

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.

Documentation