Skip to content

Analytical Scenario and Storyline Evaluation Support System written in Python/Django

License

Notifications You must be signed in to change notification settings

mikkelakromann/assess

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ASSESS - Analytical Scenario and Storyline Evaluation Support System

ASSESS is a Django app supporting scientific quantitative modelling by providing :

  • database storage for modelling inputs and ouputs
  • web-based user interface for managing input data, executing the scientific model and viewing output data
  • other interfaces for importing and exporting data to other applications
  • organising various runs of the scientific modelling into so-called scenarios and storylines

INSTALLATION

PHASE I: Create project and apps ################################ I.1. Start Django project named assess: $ django-admin startproject assess $ cd assess

I.2. Create items app $ python manage.py startapp items Edit assess/settings.py - add to the list INSTALLED_APPS the entry/line: 'items.apps.ItemsConfig',

I.3 Create data app $ python manage.py startapp items Edit assess/settings.py - add to the list INSTALLED_APPS the entry/line: 'data.apps.DataConfig',

I.4 Create interventions app $ python manage.py startapp interventions Edit assess/settings.py - add to the list INSTALLED_APPS the entry/line: 'interventions.apps.InterventionsConfig',

I.5 Create interventions app $ python manage.py startapp interventions Edit assess/settings.py - add to the list INSTALLED_APPS the entry/line: 'scenarios.apps.ScenariosConfig',

I.6 Create results app

PHASE II: Initialse and customise II.1 Modify the file: assess/settings.py

  • in the TEMPLATES list: 'DIRS': [ BASE_DIR + '/templates/', ],
  • in STATIC_URL = '/static/'

II.2 Set up database by editing assess/settings.py Suit the DATABASES section to your need

II.3 Set up database $ python manage.py makemigrations $ python manage.py migrate

II.4 Start the webserver $ python manage.py runserver

About

Analytical Scenario and Storyline Evaluation Support System written in Python/Django

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published