-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.coffee
53 lines (50 loc) · 1.68 KB
/
config.coffee
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
47
48
49
50
51
52
53
exports.get = (subconfigs = ['local'])->
c =
development: false
port: 9064
db: 'mysql://root@127.0.0.1/csncomlv'
support:
email: ''
pass: ''
report: 'termilv@gmail.com'
name: '[csn.termi.lv]'
article_lifetime: 30
article_per_page: 10
google_analytics: 'UA-2332534-18'
lang:
title: 'Tematiskie uzdevumi ceļu satiksmes noteikumos'
description: 'Tematiskie uzdevumi ceļu satiksmes noteikumos'
description_category: (category)-> """#{category} kategorijai tematiskie uzdevumi ceļu satiksmes noteikumos"""
footer: ''
previous: 'iepriekšējā lapa'
next: 'nākošā lapa'
page: 'lapa'
date: (d)->
n = (v)-> "#{if v < 10 then "0" else ''}#{v}"
[d.getFullYear(), n(d.getMonth() + 1), n(d.getDate())].join('.')
error:
404:
title: '404 kļūda'
description: """
Lapa nav atrasta. Ej <a href="/">uz sākumu</a>.
"""
500:
title: '500 servera kļūda'
description: """
Uzgaidi mazliet vai atgriezies <a href="/">uz sākumu</a>.
"""
static: [
{
url: '/'
title: 'Tematiskie uzdevumi ceļu satiksmes noteikumos'
description: """
<p>Jautājumi ņemti no <u>csnt.csdd.lv</u> un pie katra jautājuma ir datums (apzīmē jautājuma svaigumu).</p>
<p>Izvēlieties pa kreisi vēlamo kategoriju.</p>
<p>Pareizā atbilde iedegsies, ja uzspiedīsiet uz jautājuma atbildēm.</p>
"""
}
]
for subconfig in subconfigs
for key, value of require("./config.#{subconfig}")
c[key] = if typeof value is 'object' then Object.assign(c[key], value) else value
c