diff --git a/config/admin.routes b/config/admin.routes new file mode 100644 index 0000000..d29a974 --- /dev/null +++ b/config/admin.routes @@ -0,0 +1,5 @@ +# +# [GET,POST,PUT...] path controller.method +# + + diff --git a/config/api.routes b/config/api.routes new file mode 100644 index 0000000..2b4ded1 --- /dev/null +++ b/config/api.routes @@ -0,0 +1,3 @@ +# +# [GET,POST,PUT...] path controller.method +# diff --git a/config/application.conf b/config/application.conf index 6035870..4c6a58e 100644 --- a/config/application.conf +++ b/config/application.conf @@ -150,16 +150,11 @@ database.pool.minPoolSize = 20 database.pool.maxLifetime = 2000000 database.pool.connectionTimeout = 30000 -# AMQP -amqp.enabled = true -amqp.host = 127.0.0.1 -amqp.port = 5672 -amqp.username = test -amqp.password = 123 # Queue -# memory, redis, amqp +# memory, redis queue.driver = amqp +queue.workerThreads = 32 # Mail mail.smtp.host = smtp.gmail.com diff --git a/dub.sdl b/dub.sdl index dbe3d7e..f2acf80 100644 --- a/dub.sdl +++ b/dub.sdl @@ -1,7 +1,7 @@ name "hunt-skeleton" description "An application based on Hunt Framework." -copyright "Copyright (c) 2015-2020 HuntLabs" +copyright "Copyright (c) 2015-2021 HuntLabs" homepage "https://www.huntlabs.net" license "Apache-2.0" targetType "executable" -dependency "hunt-framework" version="~>3.4.0-beta.1" +dependency "hunt-framework" path="../hunt-framework-latest"