added script to create a local settings

This commit is contained in:
Oskar Hahn 2012-11-24 16:22:48 +01:00
parent ddd251a742
commit a7c13e3285
3 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -12,6 +12,7 @@ docs/_build/*
build/*
dist/*
.DS_Store
settings.py
# Unit test / coverage reports
.coverage

View File

@ -6,4 +6,5 @@ python:
install:
- pip install -r requirements.txt --use-mirrors
- pip install coverage django-discover-runner
- python extras/scripts/create_local_settings.py
script: coverage run ./manage.py test tests && coverage report -m

View File

@ -0,0 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
script_path = os.path.realpath(os.path.dirname(__file__))
sys.path.append(os.path.join(script_path, '..', '..'))
from openslides.main import create_settings
if __name__ == "__main__":
cwd = os.getcwd()
create_settings(os.path.join(cwd, 'settings.py'),
os.path.join(cwd, 'database.sqlite'))