├── .dockerignore ├── .env.template ├── .gitignore ├── Dockerfile ├── README.md ├── app.py ├── docker-compose.yaml ├── requirements.txt ├── static ├── favicon.png └── styles.css └── templates ├── dns_records.html └── login.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | venv/ 3 | __pycache__/ 4 | notes.txt 5 | *.bak 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | python-dotenv 3 | requests 4 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/static/styles.css -------------------------------------------------------------------------------- /templates/dns_records.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/templates/dns_records.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidhfrankelcodes/flask-cloudflare-dns-crud-app/HEAD/templates/login.html --------------------------------------------------------------------------------