diff --git a/cookiecutter.json b/cookiecutter.json index 210179cc2..bb036076a 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -13,7 +13,7 @@ "Apache Software License 2.0", "Not open source" ], - "timezone": "GMT+3", + "timezone": "Asia/Amman", "windows": "n", "use_pycharm": "y", "use_docker": "n", diff --git a/{{cookiecutter.project_slug}}/config/settings/base.py b/{{cookiecutter.project_slug}}/config/settings/base.py index 937f1a7ee..25362576f 100644 --- a/{{cookiecutter.project_slug}}/config/settings/base.py +++ b/{{cookiecutter.project_slug}}/config/settings/base.py @@ -87,6 +87,12 @@ THIRD_PARTY_APPS = [ 'allauth.account', 'allauth.socialaccount', 'rest_framework', + 'django_filters', + 'reversion', + 'django_tables2', + 'widget_tweaks', + 'phonenumber_field', + ] LOCAL_APPS = [ '{{ cookiecutter.project_slug }}.users.apps.UsersAppConfig', diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt index 93418b5f2..a6bc0f0b8 100644 --- a/{{cookiecutter.project_slug}}/requirements/base.txt +++ b/{{cookiecutter.project_slug}}/requirements/base.txt @@ -16,6 +16,16 @@ flower==0.9.2 # https://github.com/mher/flower {%- endif %} {%- endif %} +# Custome + +django-filter==1.1.0 +django-reversion==2.0.13 +django-tables2==1.21.1 +django-widget-tweaks==1.4.2 +pika==0.12.0 +ujson==1.35 +django-phonenumber-field==2.0.1 + # Django # ------------------------------------------------------------------------------ django==2.0.8 # pyup: < 2.1 # https://www.djangoproject.com/