17 lines
327 B
Elixir
17 lines
327 B
Elixir
import Config
|
|
|
|
config :file_processor,
|
|
filepath: "/tmp/myfiles",
|
|
rfppath: "/tmp/rfpfile"
|
|
|
|
config :file_processor, FileProcessor.Application,
|
|
pubsub: [
|
|
phoenix_pubsub: [
|
|
adapter: Phoenix.PubSub.PG2,
|
|
pool_size: 1
|
|
]
|
|
]
|
|
|
|
# Only need this when we have different envs
|
|
# import_config "#{config_env()}.exs"
|