-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-conf.edn
27 lines (26 loc) · 1.15 KB
/
example-conf.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
;; 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.
{:port 3000
;; when :nrepl-port is set the application starts the nREPL server on load
:nrepl-port 7000
:r-serve-port 6311
:r-init-script nil
;; :database-url "jdbc:postgresql://localhost:54320/rapex_dev?user=postgres&password=password"
:workdir "/app"
:datadir "/app"
:fs-services [{:fs-service "minio"
:fs-endpoint "http://localhost:9000"
:fs-access-key "pgx-lab"
:fs-secret-key "4gmPNjG5Jxxxxxxxxx"
:fs-rootdir "/app"}
{:fs-service "oss"
:fs-endpoint "http://oss-cn-shanghai.aliyuncs.com"
:fs-access-key "LTAI4G3Muxxxxxxxxx"
:fs-secret-key "wxtpI1KzxxxxxxxxxxFjmIY9Dj"
:fs-rootdir nil}]
:default-fs-service "minio"
;; All config of related plugin are defined here.
:plugins {}
:enable-cors false
:cors-origins nil}