https://github.com/matthiaskoenig/expdata_interface
https://github.com/matthiaskoenig/expdata_interface
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matthiaskoenig/expdata_interface
- Owner: matthiaskoenig
- Created: 2017-04-25T08:48:14.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-03-27T19:56:38.000Z (over 7 years ago)
- Last Synced: 2025-01-04T20:24:35.029Z (12 months ago)
- Language: TeX
- Size: 29.1 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# expdata_interface
Django database interface for experimental datasets consisting of
- publication (pdf)
- tables & figures (png)
- corresponding raw data (csv, excel)
## Installation
```
mkvirtualenv expdata_interface
(expdata_interface) $ pip install -r requirements.txt
```
## Usage
Create empty database
```
python manage.py makemigrations
python manage.py migrate
```
Add user for admin interface
```
python manage.py createsuperuser
```
Database can be filled with bibliography data with corresponding figures, tables, datasets
`expdata_interface/db_create.py` : script to fill database
To run the web interface locally use
```
python manage.py runserver 8001
http://127.0.0.1:8001/expdata_interface/
```
## heroku deployment
The following files are required for heroku
```
Procfile
venv/
```