Add delete files and dockerize application
This commit is contained in:
@@ -7,7 +7,7 @@ logger:
|
||||
# Enable pretty backtrace (sets RUST_BACKTRACE=1)
|
||||
pretty_backtrace: true
|
||||
# Log level, options: trace, debug, info, warn or error.
|
||||
level: debug
|
||||
level: {{ get_env(name="LOGGER_LEVEL", default="debug") }}
|
||||
# Define the logging format. options: compact, pretty or json
|
||||
format: compact
|
||||
# By default the logger has filtering only logs that came from your code or logs that came from `loco` framework. to see all third party libraries
|
||||
@@ -19,6 +19,7 @@ server:
|
||||
# Port on which the server will listen. the server binding is 0.0.0.0:{PORT}
|
||||
port: 5150
|
||||
# The UI hostname or IP address that mailers will point to.
|
||||
binding: {{ get_env(name="BINDING", default="localhost") }}
|
||||
host: {{ get_env(name="HOST", default="http://localhost") }}
|
||||
# Out of the box middleware configuration. to disable middleware you can changed the `enable` field to `false` of comment the middleware block
|
||||
middlewares:
|
||||
@@ -53,25 +54,6 @@ server:
|
||||
path: "assets/static"
|
||||
fallback: "assets/static/404.html"
|
||||
|
||||
#
|
||||
# (2) Client side app static config
|
||||
# =================================
|
||||
#
|
||||
# Note that you need to go in `frontend` and run your frontend build first,
|
||||
# e.g.: $ npm install & npm build
|
||||
#
|
||||
# (client-block-start)
|
||||
# static:
|
||||
# enable: true
|
||||
# must_exist: true
|
||||
# precompressed: false
|
||||
# folder:
|
||||
# uri: "/"
|
||||
# path: "frontend/dist"
|
||||
# fallback: "frontend/dist/index.html"
|
||||
# (client-block-end)
|
||||
#
|
||||
|
||||
# Worker Configuration
|
||||
workers:
|
||||
# specifies the worker mode. Options:
|
||||
|
Reference in New Issue
Block a user