forked from joakim-hove/fmu_storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_env_template.csh
29 lines (22 loc) · 1023 Bytes
/
init_env_template.csh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This is a template file with environment settings which are required
# for Django to work properly. You are advised to make a copy of this
# file with your personal settings, and then source that before you
# start development - your personal file should not be under version
# control.
# This should be the PYTHONPATH to the settings module which applies
# to this project. Your python environment should be so that:
#
# python -m $DJANGO_SETTINGS_MODULE
#
# works without error.
setenv DJANGO_SETTINGS_MODULE fmu_storage.settings
# This should be a database connection string, the string will be
# parsed by dj_database_url.parse( ) function.
setenv DATABASE_URL "sqlite:///fmu_storage.sqlite"
# A very important part of the ecl_storage application is to store
# files from eclipse simulations. The environment variable
# STORAGE_ROOT should point to the root of the file storage area. The
# files will eventually be stored in:
#
# $STORAGE_ROOT/fmu_storage/$YEAR/$MONTH/$DAY/
setenv STORAGE_ROOT `pwd`/storage