Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jelle van der Waa
Archweb
Commits
e54c8d85
Commit
e54c8d85
authored
May 01, 2017
by
Angel Velásquez
Committed by
GitHub
May 01, 2017
Browse files
Merge pull request #11 from jelly/travisci
Add travisci file
parents
4250aefc
320f78e6
Changes
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
0 → 100644
View file @
e54c8d85
language
:
python
python
:
-
"
2.7"
install
:
"
pip
install
-r
requirements.txt"
script
:
-
python manage.py collectstatic --noinput
-
python manage.py test
settings.py
View file @
e54c8d85
...
...
@@ -178,8 +178,21 @@
'US'
:
'United States'
,
}
# Make this unique, and don't share it with anybody.
SECRET_KEY
=
'00000000000000000000000000000000000000000000000'
DATABASES
=
{
'default'
:
{
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
'database.db'
,
},
}
## Import local settings
from
local_settings
import
*
try
:
from
local_settings
import
*
except
ImportError
:
pass
# Enable caching templates in production environments
if
not
TEMPLATE_DEBUG
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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