├── .gitignore ├── .md ├── LICENSE ├── README.md ├── app.py ├── lib.py ├── requirements.txt └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/app.py -------------------------------------------------------------------------------- /lib.py: -------------------------------------------------------------------------------- 1 | # Add basic utility code here for now. -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenaMel/FlaskDesktopAppDaisyUITemplate/HEAD/templates/index.html --------------------------------------------------------------------------------