Initial commit that merge both the front end and the API in the same repository

This commit is contained in:
Eliot Berriot 2017-06-23 23:00:42 +02:00
commit 76f98b74dd
285 changed files with 51318 additions and 0 deletions

62
api/requirements/base.txt Normal file
View file

@ -0,0 +1,62 @@
# Bleeding edge Django
django==1.8.7
# Configuration
django-environ==0.4.0
django-secure==1.0.1
whitenoise==2.0.6
# Forms
django-braces==1.8.1
# django-crispy-forms==1.5.2
# django-floppyforms==1.5.2
# Models
django-model-utils==2.3.1
# Images
Pillow==3.0.0
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth==0.24.1
# Python-PostgreSQL Database Adapter
psycopg2==2.6.1
# Unicode slugification
unicode-slugify==0.1.3
django-autoslug==1.9.3
# Time zones support
pytz==2015.7
# Redis support
django-redis==4.3.0
redis>=2.10.0
celery==3.1.19
# Your custom requirements go here
django-cors-headers
musicbrainzngs
youtube_dl>=2015.12.21
djangorestframework
djangorestframework-jwt
django-celery
django-mptt
google-api-python-client
arrow
django-taggit
persisting_theory
django-versatileimagefield
django-cachalot
django-rest-auth
beautifulsoup4
markdown
ipython
mutagen

View file

@ -0,0 +1,15 @@
# Local development dependencies go here
-r base.txt
coverage==4.0.3
django_coverage_plugin==1.1
Sphinx
django-extensions==1.5.9
Werkzeug==0.11.2
django-test-plus==1.0.11
factory_boy==2.6.0
# django-debug-toolbar that works with Django 1.5+
django-debug-toolbar>=1.5,<1.6
# improved REPL
ipdb==0.8.1

View file

@ -0,0 +1,13 @@
# Pro-tip: Try not to put anything here. There should be no dependency in
# production that isn't in development.
-r base.txt
# WSGI Handler
# ------------------------------------------------
# there's no python 3 support in stable, have to use the latest release candidate for gevent
gevent==1.1rc1
gunicorn==19.4.1

12
api/requirements/test.txt Normal file
View file

@ -0,0 +1,12 @@
# Test dependencies go here.
-r base.txt
coverage==4.0.3
django_coverage_plugin==1.1
flake8==2.5.0
django-test-plus==1.0.11
factory_boy==2.6.0
model_mommy
tox