Allowlist App

Check Test codecov

Run

Dev

flask --app allowlist run

Prod

Simple

poetry install --only main
.venv/bin/waitress-serve --host 127.0.0.1 --call allowlist:create_app

Complex

poetry install --only main
.venv/bin/waitress-serve \
    --listen "127.0.0.1:8080" \
    --trusted-proxy '*' \
    --trusted-proxy-headers 'x-forwarded-for' \
    --log-untrusted-proxy-headers \
    --clear-untrusted-proxy-headers \
    --threads 4 \
    --call allowlist:create_app

Todo

  • ipv6 support
  • opnsense