Skip to content

Commit

Permalink
Migrated models to db. generated db files. added superuser. Tested ru…
Browse files Browse the repository at this point in the history
…nning admin site. All green.
  • Loading branch information
taoteg committed Nov 28, 2017
1 parent 913d5d6 commit e6b2bd0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Using this tutorial and sbsequent references as baseline:
- https://www.elastic.co/guide/index.html
- https://github.com/elastic/elasticsearch
- https://www.codingforentrepreneurs.com/blog/django-virtualenv-python-gitignore-file/
- https://pixabay.com/en/blog/posts/django-search-with-elasticsearch-47/

Uses a custom project template that is no loger available, so recreating manually to match tutorial structure.

Expand Down
2 changes: 1 addition & 1 deletion project/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
'default': {
'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'NAME': os.path.join(BASE_DIR, 'db/development.db'),
'NAME': os.path.join(BASE_DIR, 'db/development.db'), # Added.
}
}

Expand Down
Binary file added project/db/development.db
Binary file not shown.

0 comments on commit e6b2bd0

Please sign in to comment.