arcature 0.1.2

Arcature: an opinionated full-stack Rust web framework. One package, batteries included.
Documentation
APP_NAME=__PROJECT_NAME__
# Display and logging only. No security decision reads this: the session
# cookie's `Secure` attribute is keyed off the build profile, so setting
# APP_ENV=development on a real deployment cannot take it off.
APP_ENV=development
APP_PORT=3000
APP_BIND=127.0.0.1

# The externally reachable base URL, used to build links in outgoing mail.
# The application cannot infer this from a request, because a request behind
# a proxy reports the proxy's host.
APP_URL=http://127.0.0.1:3000

# The master secret for signed session cookies. Empty until you run
# `arc key:generate`, which mints 64 bytes from the OS RNG and writes them
# here as 128 hex characters. The application refuses to boot without it.
APP_KEY=

DATABASE_URL=__DATABASE_URL__
# Optional. Leave empty and the application runs with no cache at all --
# nothing connects, nothing times out. Fill it in when you want one; the
# wiring in `bootstrap/app.rs` is already there.
REDIS_URL=

STORAGE_ROOT=./storage
MAIL_URL=smtp://127.0.0.1:1025
MAIL_FROM=noreply@localhost