15 lines
732 B
Text
15 lines
732 B
Text
|
;; 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
|
||
|
:port 3000
|
||
|
;; when :nrepl-port is set the application starts the nREPL server on load
|
||
|
:nrepl-port 7000
|
||
|
|
||
|
;;Twitter used as an example, replace these URIs with the OAuth provider of your choice
|
||
|
:request-token-uri "https://api.twitter.com/oauth/request_token"
|
||
|
:access-token-uri "https://api.twitter.com/oauth/access_token"
|
||
|
:authorize-uri "https://api.twitter.com/oauth/authenticate"
|
||
|
; set your dev database connection URL here
|
||
|
:database-url "postgresql://localhost:5432/a_db_name?user=a_username&password=a_password"}
|