-
Notifications
You must be signed in to change notification settings - Fork 4
/
settings.py
46 lines (39 loc) · 1.18 KB
/
settings.py
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
import os
USER_ID="datamining"
USER_PW="eldpa!"
CONTACT = {
'address_ko': '서울시 관악구 관악로 1 서울대학교 39동 339호',
'address_en': '39-339, Seoul National University, Gwanak-ro, Gwanak-gu, Seoul, South Korea (Zipcode: 151-742)',
'email': 'zoon@snu.ac.kr',
'phone': '+82-(0)2-880-7025',
}
#2016/11/10 교수님 지시로 datamining 탭 삭제
#2019/08/07 교수님 지시로 reports, software, patent 탭 삭제
#2021/12/29 교수님 지시로 activities 탭 삭제
MENUS = [
'home',
('people', ['professor', 'students', 'onleave', 'alumni']),
('degrees',['PhD','Masters','admission']),
'courses',
('research', ['journal','conference', 'insight']),
('projects', ['topics', 'FAQ']),
'education',
'startup',
'opendata',
'contact'
]
BABEL = {
'default_locale': 'ko',
}
LOCALES = ['ko', 'en']
SERVER = {
'host': '0.0.0.0',
'port': 80,
'debug': True,
}
APP_URL = 'http://dm.snu.ac.kr'
APP_ROOT = os.path.dirname(os.path.abspath(__file__))
APP_STATIC = os.path.join(APP_ROOT, 'static')
APP_STATIC_SEMINAR = os.path.join(APP_STATIC,'seminar')
APP_TEMPLATES = os.path.join(APP_ROOT, 'templates')