-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-config_template.edn
33 lines (26 loc) · 1.2 KB
/
dev-config_template.edn
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
;; WARNING
;; The dev-config.edn file is used for local environment variables, such as database credentials.
;; This file is listed in .gitignore and will be excluded from version control by Git.
{:dev true
:app-host "http://localhost:3000"
:port 3000
;; when :nrepl-port is set the application starts the nREPL server on load
:nrepl-port 7000
:frontend-host "http://localhost:8080"
:database-url "mysql://localhost:3306/g2_dev?user=g2_user&password=local-pass&serverTimezone=UTC"
;; Zeus oauth params
:zeus-authorize-uri "https://adams.ugent.be/oauth/oauth2/authorize/"
:zeus-access-token-uri "https://adams.ugent.be/oauth/oauth2/token/"
:zeus-user-api-uri "https://adams.ugent.be/oauth/api/current_user/"
:zeus-oauth-consumer-key "tomtest"
:zeus-oauth-consumer-secret "blargh"
;; Github oauth params
:github-authorize-uri "https://github.com/login/oauth/authorize"
:github-access-token-uri "https://github.com/login/oauth/access_token"
:github-oauth-consumer-key "8a03dc587747c1b38c09"
:github-oauth-consumer-secret "7d90249f0e4cc6884ace454253938c587737254d"
;; Github organization
:github-organization "ZeusWPI"
;;Github app oauth token
:github-personal-access-token ""
}