Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
campaign
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
La Quadrature du Net
piphone
campaign
Commits
614ee23c
Commit
614ee23c
authored
Nov 22, 2014
by
Mindiell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaning install process
parent
64cf9b13
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
9 deletions
+29
-9
.gitignore
.gitignore
+10
-0
README.md
README.md
+13
-3
picampaign/settings.py.sample
picampaign/settings.py.sample
+5
-5
setup.py
setup.py
+1
-1
No files found.
.gitignore
View file @
614ee23c
*.pyc
build/
dist/
picampaign.egg-info/
picampaign/settings.py
# virtual environment
ve/
venv/
.venv/
.env/
README.md
View file @
614ee23c
...
...
@@ -10,6 +10,7 @@ Create a python virtual environment and activate it
virtualenv .env
source .env/bin/activate
Install package
~~~~~~~~~~~~~~~
...
...
@@ -19,14 +20,21 @@ Install package
Configuration
-------------
Edit **settings.py** according to what type of database you want to use
and others settings related to your environment.
Create **settings.py** from **settings.py.sample** inside the **picampaign** module and edit it:
* modify the value of **SECRET_KEY**
* set database configuration according to what type of database you want to use
* according to your localization, adjust **LANGUAGE_CODE** and **TIME_ZONE**
* in production environment, set **DEBUG** value to **False**
* in production environment, set **TEMPLATE_DEBUG** value to **False**
Synchronize database
~~~~~~~~~~~~~~~~~~~~
./manage.py syncdb
It will ask for creation of a superuser.
If syncdb ran previously, commands are:
...
...
@@ -34,10 +42,12 @@ If syncdb ran previously, commands are:
./manage.py makemigrations
./manage.py syncdb
Run website
~~~~~~~~~~~
./manage.py runserver
Then open your browser to http://127.0.0.1/admin
Then open your browser to http://127.0.0.1:8000/admin
picampaign/settings.py
→
picampaign/settings.py
.sample
View file @
614ee23c
...
...
@@ -17,12 +17,12 @@ BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY
=
'
@q8%6uzh(bku)zmkl$&*_8m3(!f^rpw+d=&zi7llu=fjps!f_x
'
SECRET_KEY = '
select a secret key
'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG
=
Tru
e
DEBUG =
Fals
e
TEMPLATE_DEBUG
=
Tru
e
TEMPLATE_DEBUG =
Fals
e
ALLOWED_HOSTS = []
...
...
@@ -69,9 +69,9 @@ DATABASES = {
# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/
LANGUAGE_CODE
=
'
en-us
'
LANGUAGE_CODE = '
fr-FR
'
TIME_ZONE
=
'
UTC
'
TIME_ZONE = '
Europe/Paris
'
USE_I18N = True
...
...
setup.py
View file @
614ee23c
...
...
@@ -3,7 +3,7 @@ import os
from
setuptools
import
setup
,
find_packages
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
README
=
open
(
os
.
path
.
join
(
here
,
'README'
)).
read
()
README
=
open
(
os
.
path
.
join
(
here
,
'README
.md
'
)).
read
()
requires
=
[
'django'
,
...
...
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