├── README.md ├── manage.py ├── media └── html │ ├── page_22.html │ ├── page_23.html │ └── page_24.html ├── myproject ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── requirements.txt └── staticpage ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tasks.py ├── templates └── staticpage │ ├── base.html │ ├── detail.html │ └── template.html ├── tests.py ├── urls.py └── views.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/manage.py -------------------------------------------------------------------------------- /media/html/page_22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/media/html/page_22.html -------------------------------------------------------------------------------- /media/html/page_23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/media/html/page_23.html -------------------------------------------------------------------------------- /media/html/page_24.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/media/html/page_24.html -------------------------------------------------------------------------------- /myproject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/__init__.py -------------------------------------------------------------------------------- /myproject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/asgi.py -------------------------------------------------------------------------------- /myproject/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/celery.py -------------------------------------------------------------------------------- /myproject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/settings.py -------------------------------------------------------------------------------- /myproject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/urls.py -------------------------------------------------------------------------------- /myproject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/myproject/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/requirements.txt -------------------------------------------------------------------------------- /staticpage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticpage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/admin.py -------------------------------------------------------------------------------- /staticpage/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/apps.py -------------------------------------------------------------------------------- /staticpage/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/forms.py -------------------------------------------------------------------------------- /staticpage/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/migrations/0001_initial.py -------------------------------------------------------------------------------- /staticpage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticpage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/models.py -------------------------------------------------------------------------------- /staticpage/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/tasks.py -------------------------------------------------------------------------------- /staticpage/templates/staticpage/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/templates/staticpage/base.html -------------------------------------------------------------------------------- /staticpage/templates/staticpage/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/templates/staticpage/detail.html -------------------------------------------------------------------------------- /staticpage/templates/staticpage/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/templates/staticpage/template.html -------------------------------------------------------------------------------- /staticpage/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/tests.py -------------------------------------------------------------------------------- /staticpage/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/urls.py -------------------------------------------------------------------------------- /staticpage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyunbo/django-static-page-generator-celery-redis/HEAD/staticpage/views.py --------------------------------------------------------------------------------