/ dev-config.edn_example
dev-config.edn_example
 1  ;; WARNING
 2  ;; The dev-config.edn file is used for local environment variables, such as database credentials.
 3  ;; This file is listed in .gitignore and will be excluded from version control by Git.
 4  
 5  {:dev true
 6   :port 3000
 7   ;; when :nrepl-port is set the application starts the nREPL server on load
 8   :nrepl-port 7000
 9   
10   ;;Twitter used as an example, replace these URIs with the OAuth provider of your choice
11   :request-token-uri "https://api.twitter.com/oauth/request_token"
12   :access-token-uri "https://api.twitter.com/oauth/access_token"
13   :authorize-uri "https://api.twitter.com/oauth/authenticate"
14   ; set your dev database connection URL here
15   :database-url "mysql://localhost:3306/a_db_name?user=a_username&password=a_password"}