Skip to content

Commit 1262b15

Browse files
committed
conf to memory
1 parent 3c58803 commit 1262b15

File tree

2 files changed

+55
-74
lines changed

2 files changed

+55
-74
lines changed

conf/application.conf

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
play.evolutions {
2+
3+
}
4+
play.db {
5+
prototype {
6+
7+
}
8+
}
9+
play.filters.hosts {
10+
allowed = ["."]
11+
}
12+
play.mailer {
13+
host=smtp.gmail.com
14+
port=465
15+
16+
password=yourpassword
17+
ssl=true
18+
mock=true
19+
20+
}
21+
# slick.dbs.default.profile="slick.jdbc.PostgresProfile$"
22+
# slick.dbs.default.db.connectionPool = disabled
23+
# slick.dbs.default.db.driver="org.postgresql.Driver"
24+
# slick.dbs.default.db.url="jdbc:postgresql:db?user=username&password=pass"
25+
# slick.dbs.default.db.keepAliveConnection=true
26+
# slick.dbs.default.db.users="username"
27+
# slick.dbs.default.db.password="pass"
28+
# slick.dbs.default.db.maxActive=2
29+
# slick.dbs.default.db.maxConnections=20
30+
# slick.dbs.default.db.numThreads=10
31+
slick.dbs.default.profile="slick.jdbc.H2Profile$"
32+
slick.dbs.default.db.driver="org.h2.Driver"
33+
slick.dbs.default.db.url="jdbc:h2:mem:play"
34+
slick.dbs.default.db.user=sa
35+
slick.dbs.default.db.password=""
36+
play.crypto.secret = "YOUR_SECRET"
37+
play.i18n.langs = [ "en", "es" ]
38+
repo.user = "user"
39+
repo.pass = "pass"
40+
repo.url = "https://svn..."
41+
task_model = {
42+
patternParser = "(#\\d)\\d+"
43+
patternSplit = "#"
44+
separator = ""
45+
}
46+
target = {
47+
user = "user"
48+
pass = "pass"
49+
url = "http://target/api/v1"
50+
}
51+
boot = {
52+
blank = true
53+
first_api_key = "AbCdEfGhIjK1"
54+
magic = "YOUR_MAGIC_SECRET"
55+
}

conf/application.conf_test

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)