├── .gitignore ├── LICENSE ├── README.md ├── backup └── README ├── conf └── README ├── dist └── README └── www ├── static └── README └── templates └── README /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelliao/awesome-python-webapp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelliao/awesome-python-webapp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelliao/awesome-python-webapp/HEAD/README.md -------------------------------------------------------------------------------- /backup/README: -------------------------------------------------------------------------------- 1 | stores database backup files. 2 | -------------------------------------------------------------------------------- /conf/README: -------------------------------------------------------------------------------- 1 | stores configuration files. 2 | -------------------------------------------------------------------------------- /dist/README: -------------------------------------------------------------------------------- 1 | store dist package. 2 | -------------------------------------------------------------------------------- /www/static/README: -------------------------------------------------------------------------------- 1 | stores static files. 2 | -------------------------------------------------------------------------------- /www/templates/README: -------------------------------------------------------------------------------- 1 | stores templates. 2 | --------------------------------------------------------------------------------