Commit 0cdf0f32c779d5204ed704bf2f88faef4af10a17
1 parent
68ba2485
Exists in
master
and in
31 other branches
Removed postgres
Signed-off-by: Sergio Oliveira <sergio@tracy.com.br> Signed-off-by: Carolina Ramalho <carol15022@hotmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
1 changed file
with
2 additions
and
5 deletions
Show diff stats
colab/management/initconfig.py
... | ... | @@ -34,11 +34,8 @@ ALLOWED_HOSTS = [ |
34 | 34 | ## Database settings |
35 | 35 | DATABASES = {{ |
36 | 36 | 'default': {{ |
37 | - 'ENGINE': 'django.db.backends.postgresql_psycopg2', | |
38 | - 'HOST': 'localhost', | |
39 | - 'NAME': 'colab', | |
40 | - 'USER': 'colab', | |
41 | - 'PASSWORD': 'colab', | |
37 | + 'ENGINE': 'django.db.backends.sqlite3', | |
38 | + 'NAME': 'colab.sqlite3', | |
42 | 39 | }} |
43 | 40 | }} |
44 | 41 | ... | ... |