├── .gitignore ├── Procfile ├── README.md ├── manage.py ├── requirements.txt ├── runtime.txt ├── screenshot.png ├── shortener ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── serializers.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── static ├── css │ └── index.css └── js │ └── index.js ├── templates └── index.html └── urlshortener ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── settings.cpython-36.pyc ├── urls.cpython-36.pyc └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | db.sqlite3 -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn urlshortener.wsgi --log-file - 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.3 -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/screenshot.png -------------------------------------------------------------------------------- /shortener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortener/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/__pycache__/serializers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/serializers.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/admin.py -------------------------------------------------------------------------------- /shortener/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/apps.py -------------------------------------------------------------------------------- /shortener/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/migrations/0001_initial.py -------------------------------------------------------------------------------- /shortener/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortener/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /shortener/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/models.py -------------------------------------------------------------------------------- /shortener/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/serializers.py -------------------------------------------------------------------------------- /shortener/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/tests.py -------------------------------------------------------------------------------- /shortener/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/urls.py -------------------------------------------------------------------------------- /shortener/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/shortener/views.py -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/static/js/index.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/templates/index.html -------------------------------------------------------------------------------- /urlshortener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /urlshortener/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /urlshortener/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /urlshortener/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /urlshortener/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /urlshortener/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/settings.py -------------------------------------------------------------------------------- /urlshortener/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/urls.py -------------------------------------------------------------------------------- /urlshortener/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FeezyHendrix/urlshortener/HEAD/urlshortener/wsgi.py --------------------------------------------------------------------------------