├── .editorconfig ├── .gitignore ├── .pylintrc ├── DevNotes.md ├── LICENSE ├── Procfile ├── Procfile.windows ├── README.md ├── api_snippets_v1 ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161019_2135.py │ ├── 0003_snippet_owner.py │ ├── 0004_auto_20161024_2113.py │ ├── 0005_snippet_pinned.py │ ├── 0006_userprofile.py │ ├── 0007_auto_20170126_2200.py │ ├── 0008_auto_20170131_1831.py │ ├── 0009_auto_20170204_1951.py │ ├── 0010_auto_20170221_2156.py │ └── __init__.py ├── models.py ├── serializers.py ├── templates │ └── index.html ├── tests.py ├── urls.py ├── views.py ├── views_auth.py ├── views_tags.py └── views_templates.py ├── app.json ├── etc └── dev_secret_key.txt ├── main ├── __init__.py ├── settings │ ├── base.py │ ├── dev.py │ ├── prod.py │ └── staging.py ├── static │ ├── humans.txt │ ├── milligram.min.css │ └── milligram.min.css.map ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt └── runtime.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | staticfiles 4 | .env 5 | db.sqlite3 6 | etc 7 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/.pylintrc -------------------------------------------------------------------------------- /DevNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/DevNotes.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn main.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /Procfile.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/Procfile.windows -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/README.md -------------------------------------------------------------------------------- /api_snippets_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_snippets_v1/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/admin.py -------------------------------------------------------------------------------- /api_snippets_v1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/apps.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0001_initial.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0002_auto_20161019_2135.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0002_auto_20161019_2135.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0003_snippet_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0003_snippet_owner.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0004_auto_20161024_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0004_auto_20161024_2113.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0005_snippet_pinned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0005_snippet_pinned.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0006_userprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0006_userprofile.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0007_auto_20170126_2200.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0007_auto_20170126_2200.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0008_auto_20170131_1831.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0008_auto_20170131_1831.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0009_auto_20170204_1951.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0009_auto_20170204_1951.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/0010_auto_20170221_2156.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/migrations/0010_auto_20170221_2156.py -------------------------------------------------------------------------------- /api_snippets_v1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_snippets_v1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/models.py -------------------------------------------------------------------------------- /api_snippets_v1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/serializers.py -------------------------------------------------------------------------------- /api_snippets_v1/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/templates/index.html -------------------------------------------------------------------------------- /api_snippets_v1/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/tests.py -------------------------------------------------------------------------------- /api_snippets_v1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/urls.py -------------------------------------------------------------------------------- /api_snippets_v1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/views.py -------------------------------------------------------------------------------- /api_snippets_v1/views_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/views_auth.py -------------------------------------------------------------------------------- /api_snippets_v1/views_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/views_tags.py -------------------------------------------------------------------------------- /api_snippets_v1/views_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/api_snippets_v1/views_templates.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/app.json -------------------------------------------------------------------------------- /etc/dev_secret_key.txt: -------------------------------------------------------------------------------- 1 | ahom8jj&fvod-#453)+x4nw0f)07pa725bw$-!efif0pg-4y%e -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/settings/base.py -------------------------------------------------------------------------------- /main/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/settings/dev.py -------------------------------------------------------------------------------- /main/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/settings/prod.py -------------------------------------------------------------------------------- /main/settings/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/settings/staging.py -------------------------------------------------------------------------------- /main/static/humans.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/static/milligram.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/static/milligram.min.css -------------------------------------------------------------------------------- /main/static/milligram.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/static/milligram.min.css.map -------------------------------------------------------------------------------- /main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/urls.py -------------------------------------------------------------------------------- /main/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/main/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargrave/snippets-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.5.1 2 | --------------------------------------------------------------------------------