{"contents":"# Deploy from parent directory:\n# cd .. \u0026\u0026 fly deploy . --config http-knot/fly.toml --dockerfile http-knot/Dockerfile --ignorefile http-knot/.dockerignore\n#\n# Setup:\n# fly apps create http-knot\n# fly volumes create knot_data --region iad --size 1\n# fly storage create\n# fly secrets set KNOT_SERVER_HOSTNAME=\u003cyour-hostname\u003e KNOT_SERVER_OWNER=\u003cowner-did\u003e\n\napp = \"http-knot\"\nprimary_region = \"iad\"\n\n[build]\n dockerfile = \"Dockerfile\"\n\n[env]\n KNOT_SERVER_DB_PATH = \"/data/knotserver.db\"\n KNOT_SERVER_LISTEN_ADDR = \"0.0.0.0:5555\"\n\n[http_service]\n internal_port = 5555\n force_https = true\n auto_stop_machines = \"stop\"\n auto_start_machines = true\n min_machines_running = 1\n\n[[vm]]\n size = \"shared-cpu-1x\"\n memory = \"512mb\"\n\n[mounts]\n source = \"knot_data\"\n destination = \"/data\"\n","path":"fly.toml","ref":"main"}