Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
9f646d01
Commit
9f646d01
authored
Mar 09, 2018
by
sim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to latest django version
parent
8d5da39c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
41 deletions
+35
-41
Pipfile
Pipfile
+1
-1
Pipfile.lock
Pipfile.lock
+7
-7
urls.py
gargantext/backend/urls.py
+10
-10
wsgi.py
gargantext/backend/wsgi.py
+1
-1
settings.py
gargantext/settings.py
+10
-9
manage.py
manage.py
+6
-13
No files found.
Pipfile
View file @
9f646d01
...
@@ -15,7 +15,7 @@ colorama = "*"
...
@@ -15,7 +15,7 @@ colorama = "*"
[packages]
[packages]
django = "
>=1.11,<1.12
"
django = "
*
"
dateutils = "*"
dateutils = "*"
celery = "*"
celery = "*"
sqlalchemy = "*"
sqlalchemy = "*"
...
...
Pipfile.lock
View file @
9f646d01
{
{
"_meta": {
"_meta": {
"hash": {
"hash": {
"sha256": "
644c4a04bf5c7390da40b6d7650df1f12e03213a9c8c979283283b5b7cc8196d
"
"sha256": "
c8907533f349d8390d9825628006b0b1baad612cde3dc5633df87706a803567c
"
},
},
"pipfile-spec": 6,
"pipfile-spec": 6,
"requires": {
"requires": {
...
@@ -58,10 +58,10 @@
...
@@ -58,10 +58,10 @@
},
},
"django": {
"django": {
"hashes": [
"hashes": [
"sha256:
74077d7309b48b97dacdac2dfb35c968028becf00a7a684e7f29b2af1b980edc
",
"sha256:
3d9916515599f757043c690ae2b5ea28666afa09779636351da505396cbb2f19
",
"sha256:
fd186d544c7c2f835668cf11f77be071307c9eb22615a5b3a16bdb14c8357f41
"
"sha256:
769f212ffd5762f72c764fa648fca3b7f7dd4ec27407198b68e7c4abf4609fd0
"
],
],
"version": "==
1.11.11
"
"version": "==
2.0.3
"
},
},
"django-celery-beat": {
"django-celery-beat": {
"hashes": [
"hashes": [
...
@@ -219,10 +219,10 @@
...
@@ -219,10 +219,10 @@
},
},
"django": {
"django": {
"hashes": [
"hashes": [
"sha256:
74077d7309b48b97dacdac2dfb35c968028becf00a7a684e7f29b2af1b980edc
",
"sha256:
3d9916515599f757043c690ae2b5ea28666afa09779636351da505396cbb2f19
",
"sha256:
fd186d544c7c2f835668cf11f77be071307c9eb22615a5b3a16bdb14c8357f41
"
"sha256:
769f212ffd5762f72c764fa648fca3b7f7dd4ec27407198b68e7c4abf4609fd0
"
],
],
"version": "==
1.11.11
"
"version": "==
2.0.3
"
},
},
"isort": {
"isort": {
"hashes": [
"hashes": [
...
...
gargantext/backend/urls.py
View file @
9f646d01
"""gargantext URL Configuration
"""gargantext URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/
1.11
/topics/http/urls/
https://docs.djangoproject.com/en/
2.0
/topics/http/urls/
Examples:
Examples:
Function views
Function views
1. Add an import: from my_app import views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns:
url(r'^$
', views.home, name='home')
2. Add a URL to urlpatterns:
path('
', views.home, name='home')
Class-based views
Class-based views
1. Add an import: from other_app.views import Home
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns:
url(r'^$
', Home.as_view(), name='home')
2. Add a URL to urlpatterns:
path('
', Home.as_view(), name='home')
Including another URLconf
Including another URLconf
1. Import the include() function: from django.
conf.urls import url, include
1. Import the include() function: from django.
urls import include, path
2. Add a URL to urlpatterns:
url(r'^
blog/', include('blog.urls'))
2. Add a URL to urlpatterns:
path('
blog/', include('blog.urls'))
"""
"""
from
django.conf.urls
import
url
from
django.contrib
import
admin
from
django.contrib
import
admin
from
django.urls
import
path
from
django.views.generic.base
import
RedirectView
as
Redirect
from
django.views.generic.base
import
RedirectView
as
Redirect
from
django.contrib.staticfiles.storage
import
staticfiles_storage
as
static
from
django.contrib.staticfiles.storage
import
staticfiles_storage
as
static
from
rest_framework_jwt.views
import
obtain_jwt_token
from
rest_framework_jwt.views
import
obtain_jwt_token
urlpatterns
=
[
urlpatterns
=
[
url
(
r'^
admin/'
,
admin
.
site
.
urls
),
path
(
'
admin/'
,
admin
.
site
.
urls
),
url
(
r'^favicon.ico$
'
,
Redirect
.
as_view
(
url
=
static
.
url
(
'favicon.ico'
),
path
(
'favicon.ico
'
,
Redirect
.
as_view
(
url
=
static
.
url
(
'favicon.ico'
),
permanent
=
False
),
name
=
"favicon"
),
permanent
=
False
),
name
=
"favicon"
),
url
(
r'^api/auth/token$
'
,
obtain_jwt_token
),
path
(
'api/auth/token
'
,
obtain_jwt_token
),
]
]
gargantext/backend/wsgi.py
View file @
9f646d01
...
@@ -4,7 +4,7 @@ WSGI config for gargantext project.
...
@@ -4,7 +4,7 @@ WSGI config for gargantext project.
It exposes the WSGI callable as a module-level variable named ``application``.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
For more information on this file, see
https://docs.djangoproject.com/en/
1.11
/howto/deployment/wsgi/
https://docs.djangoproject.com/en/
2.0
/howto/deployment/wsgi/
"""
"""
import
os
import
os
...
...
gargantext/settings.py
View file @
9f646d01
"""
"""
Django settings for gargantext project.
Django settings for gargantext project.
Generated by 'django-admin startproject' using Django
1.11.7
.
Generated by 'django-admin startproject' using Django
2.0.3
.
For more information on this file, see
For more information on this file, see
https://docs.djangoproject.com/en/
1.11
/topics/settings/
https://docs.djangoproject.com/en/
2.0
/topics/settings/
For the full list of settings and their values, see
For the full list of settings and their values, see
https://docs.djangoproject.com/en/
1.11
/ref/settings/
https://docs.djangoproject.com/en/
2.0
/ref/settings/
"""
"""
import
os
import
os
...
@@ -20,7 +20,8 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
...
@@ -20,7 +20,8 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.11/howto/deployment/checklist/
# See https://docs.djangoproject.com/en/2.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY
=
config
(
'SECRET_KEY'
)
SECRET_KEY
=
config
(
'SECRET_KEY'
)
...
@@ -105,7 +106,7 @@ LOGGING = {
...
@@ -105,7 +106,7 @@ LOGGING = {
'level'
:
LOG_LEVEL
,
'level'
:
LOG_LEVEL
,
'propagate'
:
True
,
'propagate'
:
True
,
},
},
# All django loggers: https://docs.djangoproject.com/fr/
1.11
/topics/logging/#id3
# All django loggers: https://docs.djangoproject.com/fr/
2.0
/topics/logging/#id3
'django.template'
:
{
'django.template'
:
{
# Don't keep debug logs for template module to avoid annoying and
# Don't keep debug logs for template module to avoid annoying and
# useless noise, see:
# useless noise, see:
...
@@ -127,7 +128,7 @@ LOGGING = {
...
@@ -127,7 +128,7 @@ LOGGING = {
# Database
# Database
# https://docs.djangoproject.com/en/
1.11
/ref/settings/#databases
# https://docs.djangoproject.com/en/
2.0
/ref/settings/#databases
DEFAULT_DATABASE
=
{
DEFAULT_DATABASE
=
{
'ENGINE'
:
'django.db.backends.postgresql_psycopg2'
,
'ENGINE'
:
'django.db.backends.postgresql_psycopg2'
,
...
@@ -151,7 +152,7 @@ for db in DATABASES:
...
@@ -151,7 +152,7 @@ for db in DATABASES:
# Password validation
# Password validation
# https://docs.djangoproject.com/en/
1.11
/ref/settings/#auth-password-validators
# https://docs.djangoproject.com/en/
2.0
/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS
=
[
AUTH_PASSWORD_VALIDATORS
=
[
{
{
...
@@ -170,7 +171,7 @@ AUTH_PASSWORD_VALIDATORS = [
...
@@ -170,7 +171,7 @@ AUTH_PASSWORD_VALIDATORS = [
# Internationalization
# Internationalization
# https://docs.djangoproject.com/en/
1.11
/topics/i18n/
# https://docs.djangoproject.com/en/
2.0
/topics/i18n/
LANGUAGE_CODE
=
'en-us'
LANGUAGE_CODE
=
'en-us'
...
@@ -184,7 +185,7 @@ USE_TZ = True
...
@@ -184,7 +185,7 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/
1.11
/howto/static-files/
# https://docs.djangoproject.com/en/
2.0
/howto/static-files/
STATIC_ROOT
=
os
.
path
.
join
(
BASE_DIR
,
'static'
)
STATIC_ROOT
=
os
.
path
.
join
(
BASE_DIR
,
'static'
)
STATIC_URL
=
'/static/'
STATIC_URL
=
'/static/'
...
...
manage.py
View file @
9f646d01
...
@@ -6,17 +6,10 @@ if __name__ == "__main__":
...
@@ -6,17 +6,10 @@ if __name__ == "__main__":
os
.
environ
.
setdefault
(
"DJANGO_SETTINGS_MODULE"
,
"gargantext.settings"
)
os
.
environ
.
setdefault
(
"DJANGO_SETTINGS_MODULE"
,
"gargantext.settings"
)
try
:
try
:
from
django.core.management
import
execute_from_command_line
from
django.core.management
import
execute_from_command_line
except
ImportError
:
except
ImportError
as
exc
:
# The above import may fail for some other reason. Ensure that the
raise
ImportError
(
# issue is really that Django is missing to avoid masking other
"Couldn't import Django. Are you sure it's installed and "
# exceptions on Python 2.
"available on your PYTHONPATH environment variable? Did you "
try
:
"forget to activate a virtual environment?"
import
django
)
from
exc
except
ImportError
:
raise
ImportError
(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
)
raise
execute_from_command_line
(
sys
.
argv
)
execute_from_command_line
(
sys
.
argv
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment