├── .buildpacks ├── .coveragerc ├── .gitignore ├── .scss-lint.yml ├── Gruntfile.coffee ├── Procfile ├── Procfile.dev ├── Procfile.test ├── README.md ├── bin ├── common.sh ├── install_nodejs └── post_compile ├── docs ├── README.md ├── architecture.md ├── changelog.md ├── deployment.md ├── development.md ├── libraries.md ├── production.md ├── services.md ├── setup.md └── testing.md ├── grunt ├── aliases.yaml ├── autoprefixer.coffee ├── clean.coffee ├── coffee.coffee ├── coffeelint.coffee ├── concurrent.coffee ├── connect.coffee ├── copy.coffee ├── imagemin.coffee ├── jasmine.coffee ├── notify.coffee ├── open.coffee ├── replace.coffee ├── sass.coffee ├── scsslint.coffee ├── shell.coffee └── watch.coffee ├── logs └── .gitkeep ├── package.json ├── project_name ├── apps │ ├── __init__.py │ └── accounts │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── factories.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_user_last_login_null.py │ │ └── __init__.py │ │ ├── models.py │ │ └── tests │ │ ├── __init__.py │ │ ├── test_admin.py │ │ ├── test_factories.py │ │ └── test_models.py ├── config │ ├── __init__.py │ ├── lib │ │ ├── __init__.py │ │ ├── colorstreamhandler.py │ │ ├── finders.py │ │ └── tdaemon.py │ ├── settings │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dev.py │ │ ├── prod.py │ │ └── test.py │ ├── urls.py │ └── wsgi.py ├── core │ ├── __init__.py │ ├── tests │ │ ├── __init__.py │ │ └── test_views.py │ ├── urls.py │ ├── utils │ │ ├── __init__.py │ │ ├── mail.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_mail_utils.py │ └── views.py ├── extensions │ ├── __init__.py │ ├── authtools │ │ ├── __init__.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── django_rq │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── job_detail.html │ │ │ └── jobs.html │ │ ├── tests │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ ├── rq_scheduler │ │ ├── __init__.py │ │ ├── templates │ │ │ ├── clear_jobs.html │ │ │ ├── confirm_action.html │ │ │ ├── delete_job.html │ │ │ ├── enqueue_job.html │ │ │ ├── index.html │ │ │ ├── job_detail.html │ │ │ └── jobs.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_views.py │ │ ├── urls.py │ │ └── views.py │ └── sites │ │ ├── __init__.py │ │ └── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_set_site_domain_and_name.py │ │ └── __init__.py ├── manage.py ├── static │ ├── css │ │ ├── lib │ │ │ ├── bootstrap.css │ │ │ └── ss-standard.css │ │ └── scss │ │ │ ├── glitch.scss │ │ │ └── style.scss │ ├── fonts │ │ └── ss-standard │ │ │ ├── documentation.html │ │ │ ├── license.txt │ │ │ ├── readme.txt │ │ │ ├── ss-standard.eot │ │ │ ├── ss-standard.otf │ │ │ ├── ss-standard.svg │ │ │ ├── ss-standard.ttf │ │ │ └── ss-standard.woff │ ├── img │ │ └── uncompressed │ │ │ ├── favicon.ico │ │ │ └── loading.gif │ └── js │ │ ├── coffee │ │ └── script.coffee │ │ ├── lib │ │ ├── csrf.js │ │ ├── ss-standard.js │ │ └── underscore.js │ │ └── tests │ │ ├── coffee │ │ ├── basicSpec.coffee │ │ └── specHelper.coffee │ │ └── lib │ │ ├── ajaxHelper.js │ │ └── jqueryHelper.js └── templates │ ├── 404.html │ ├── 500.html │ ├── accounts │ ├── base.html │ ├── login.html │ ├── logout.html │ ├── password_change.html │ ├── password_change_done.html │ ├── password_reset.html │ ├── password_reset_complete.html │ ├── password_reset_confirm.html │ ├── password_reset_done.html │ ├── password_reset_email.html │ └── password_reset_subject.txt │ ├── base.html │ ├── includes │ └── messages.html │ ├── pages │ └── home.html │ └── robots.txt ├── requirements.txt ├── requirements ├── base.txt ├── dev.txt ├── prod.txt └── test.txt ├── runtime.txt ├── setup.cfg ├── tasks.py └── tests └── .gitkeep /.buildpacks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/.buildpacks -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/.gitignore -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/.scss-lint.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn config.wsgi --workers $WEB_CONCURRENCY --pythonpath $PYTHONPATH 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/Procfile.dev -------------------------------------------------------------------------------- /Procfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/Procfile.test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/README.md -------------------------------------------------------------------------------- /bin/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/bin/common.sh -------------------------------------------------------------------------------- /bin/install_nodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/bin/install_nodejs -------------------------------------------------------------------------------- /bin/post_compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/bin/post_compile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/libraries.md -------------------------------------------------------------------------------- /docs/production.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/production.md -------------------------------------------------------------------------------- /docs/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/services.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/docs/testing.md -------------------------------------------------------------------------------- /grunt/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/aliases.yaml -------------------------------------------------------------------------------- /grunt/autoprefixer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/autoprefixer.coffee -------------------------------------------------------------------------------- /grunt/clean.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/clean.coffee -------------------------------------------------------------------------------- /grunt/coffee.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/coffee.coffee -------------------------------------------------------------------------------- /grunt/coffeelint.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/coffeelint.coffee -------------------------------------------------------------------------------- /grunt/concurrent.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/concurrent.coffee -------------------------------------------------------------------------------- /grunt/connect.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/connect.coffee -------------------------------------------------------------------------------- /grunt/copy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/copy.coffee -------------------------------------------------------------------------------- /grunt/imagemin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/imagemin.coffee -------------------------------------------------------------------------------- /grunt/jasmine.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/jasmine.coffee -------------------------------------------------------------------------------- /grunt/notify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/notify.coffee -------------------------------------------------------------------------------- /grunt/open.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/open.coffee -------------------------------------------------------------------------------- /grunt/replace.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/replace.coffee -------------------------------------------------------------------------------- /grunt/sass.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/sass.coffee -------------------------------------------------------------------------------- /grunt/scsslint.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/scsslint.coffee -------------------------------------------------------------------------------- /grunt/shell.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/shell.coffee -------------------------------------------------------------------------------- /grunt/watch.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/grunt/watch.coffee -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/package.json -------------------------------------------------------------------------------- /project_name/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/admin.py -------------------------------------------------------------------------------- /project_name/apps/accounts/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/factories.py -------------------------------------------------------------------------------- /project_name/apps/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /project_name/apps/accounts/migrations/0002_alter_user_last_login_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/migrations/0002_alter_user_last_login_null.py -------------------------------------------------------------------------------- /project_name/apps/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/models.py -------------------------------------------------------------------------------- /project_name/apps/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/accounts/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/tests/test_admin.py -------------------------------------------------------------------------------- /project_name/apps/accounts/tests/test_factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/tests/test_factories.py -------------------------------------------------------------------------------- /project_name/apps/accounts/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/apps/accounts/tests/test_models.py -------------------------------------------------------------------------------- /project_name/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/config/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/config/lib/colorstreamhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/lib/colorstreamhandler.py -------------------------------------------------------------------------------- /project_name/config/lib/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/lib/finders.py -------------------------------------------------------------------------------- /project_name/config/lib/tdaemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/lib/tdaemon.py -------------------------------------------------------------------------------- /project_name/config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/settings/base.py -------------------------------------------------------------------------------- /project_name/config/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/settings/dev.py -------------------------------------------------------------------------------- /project_name/config/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/settings/prod.py -------------------------------------------------------------------------------- /project_name/config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/settings/test.py -------------------------------------------------------------------------------- /project_name/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/urls.py -------------------------------------------------------------------------------- /project_name/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/config/wsgi.py -------------------------------------------------------------------------------- /project_name/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/core/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/core/tests/test_views.py -------------------------------------------------------------------------------- /project_name/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/core/urls.py -------------------------------------------------------------------------------- /project_name/core/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/core/utils/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/core/utils/mail.py -------------------------------------------------------------------------------- /project_name/core/utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/core/utils/tests/test_mail_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/core/utils/tests/test_mail_utils.py -------------------------------------------------------------------------------- /project_name/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/core/views.py -------------------------------------------------------------------------------- /project_name/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/extensions/authtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/authtools/__init__.py -------------------------------------------------------------------------------- /project_name/extensions/authtools/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/extensions/authtools/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/authtools/tests/test_views.py -------------------------------------------------------------------------------- /project_name/extensions/authtools/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/authtools/urls.py -------------------------------------------------------------------------------- /project_name/extensions/authtools/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/authtools/views.py -------------------------------------------------------------------------------- /project_name/extensions/django_rq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/__init__.py -------------------------------------------------------------------------------- /project_name/extensions/django_rq/templates/job_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/templates/job_detail.html -------------------------------------------------------------------------------- /project_name/extensions/django_rq/templates/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/templates/jobs.html -------------------------------------------------------------------------------- /project_name/extensions/django_rq/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/tests/test_views.py -------------------------------------------------------------------------------- /project_name/extensions/django_rq/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/urls.py -------------------------------------------------------------------------------- /project_name/extensions/django_rq/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/django_rq/views.py -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/__init__.py -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/clear_jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/clear_jobs.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/confirm_action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/confirm_action.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/delete_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/delete_job.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/enqueue_job.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/enqueue_job.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/index.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/job_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/job_detail.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/templates/jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/templates/jobs.html -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/tests/test_views.py -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/urls.py -------------------------------------------------------------------------------- /project_name/extensions/rq_scheduler/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/rq_scheduler/views.py -------------------------------------------------------------------------------- /project_name/extensions/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/extensions/sites/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/sites/migrations/0001_initial.py -------------------------------------------------------------------------------- /project_name/extensions/sites/migrations/0002_set_site_domain_and_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/extensions/sites/migrations/0002_set_site_domain_and_name.py -------------------------------------------------------------------------------- /project_name/extensions/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/manage.py -------------------------------------------------------------------------------- /project_name/static/css/lib/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/css/lib/bootstrap.css -------------------------------------------------------------------------------- /project_name/static/css/lib/ss-standard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/css/lib/ss-standard.css -------------------------------------------------------------------------------- /project_name/static/css/scss/glitch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/css/scss/glitch.scss -------------------------------------------------------------------------------- /project_name/static/css/scss/style.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/documentation.html -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/license.txt -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/readme.txt -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/ss-standard.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/ss-standard.eot -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/ss-standard.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/ss-standard.otf -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/ss-standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/ss-standard.svg -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/ss-standard.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/ss-standard.ttf -------------------------------------------------------------------------------- /project_name/static/fonts/ss-standard/ss-standard.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/fonts/ss-standard/ss-standard.woff -------------------------------------------------------------------------------- /project_name/static/img/uncompressed/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/img/uncompressed/favicon.ico -------------------------------------------------------------------------------- /project_name/static/img/uncompressed/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/img/uncompressed/loading.gif -------------------------------------------------------------------------------- /project_name/static/js/coffee/script.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/static/js/lib/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/lib/csrf.js -------------------------------------------------------------------------------- /project_name/static/js/lib/ss-standard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/lib/ss-standard.js -------------------------------------------------------------------------------- /project_name/static/js/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/lib/underscore.js -------------------------------------------------------------------------------- /project_name/static/js/tests/coffee/basicSpec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/tests/coffee/basicSpec.coffee -------------------------------------------------------------------------------- /project_name/static/js/tests/coffee/specHelper.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/static/js/tests/lib/ajaxHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/tests/lib/ajaxHelper.js -------------------------------------------------------------------------------- /project_name/static/js/tests/lib/jqueryHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/static/js/tests/lib/jqueryHelper.js -------------------------------------------------------------------------------- /project_name/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/404.html -------------------------------------------------------------------------------- /project_name/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/500.html -------------------------------------------------------------------------------- /project_name/templates/accounts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/base.html -------------------------------------------------------------------------------- /project_name/templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/login.html -------------------------------------------------------------------------------- /project_name/templates/accounts/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/logout.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_change.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_change_done.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_reset.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_reset_complete.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_reset_confirm.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_reset_done.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/accounts/password_reset_email.html -------------------------------------------------------------------------------- /project_name/templates/accounts/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %}{% trans "Password Reset On" %} {{ site_name }} 2 | -------------------------------------------------------------------------------- /project_name/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/base.html -------------------------------------------------------------------------------- /project_name/templates/includes/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/includes/messages.html -------------------------------------------------------------------------------- /project_name/templates/pages/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/project_name/templates/pages/home.html -------------------------------------------------------------------------------- /project_name/templates/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/requirements/prod.txt -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.9 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/setup.cfg -------------------------------------------------------------------------------- /tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imkevinxu/django-kevin/HEAD/tasks.py -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------