-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev-config.edn
23 lines (19 loc) · 1.2 KB
/
dev-config.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;; WARNING
;; The dev-config.edn file is used for local environment variables, such as database credentials.
{:dev true
:port 3000
;; when :nrepl-port is set the application starts the nREPL server on load
;:nrepl-port 7000
:database-url "jdbc:postgresql://localhost:5432/books_dev?user=pguser&password=3ZmW9M38mX8AQGqBP"
;; TODO: I think we don't have a thumbnails dir anymore and can remove that here
;; However: I also need to change it in amazon-related namespaces
:thumbnails-dir "public/img/thumbnails/"
:front-matter-dir "public/img/front_matters/"
:headless-scraping "true"
:user-agents-file "src/main/resources/useragents.txt"
; the following need to be set up like this on the machine the code is running on
:firefox-profile-prefs-template-file "src/main/resources/prefs-template.js"
:firefox-profile-directory "/home/dominik/.mozilla/firefox/djhmwgxs.useragent-switcher/"
; this is just a normal firefox browser, but since it is a separate installation it was renamed
:firefox-browser-name "firefox-gecko"
}