Hello there. I'm having a problem with my app. I've cloned it from my repo and it worked fine on my and my pal's local machines, but it doesnt work here somehow... Im using virtualenv, setted up according to tutorial (a nice one, btw!), Django 1.6 and sqlite3. I've uploaded my db file (it was a real problem, cuz it's 200mb and upload process crashed at 5% every time, so i had to upload it with little rar-ed chuncks and unrar via console later - quite a trick for a junior dev like me), i checked my db file via sqlite console and everything seems ok, but when i try to open some page, that should hit the db, it crashes with error like:
OperationalError at /game_test/
no such table: game_app_game <<<--- i bet there is one!
Request Method: GET
Request URL: http://kulver.pythonanywhere.com/game_test/
Django Version: 1.6.5
Exception Type: OperationalError
Exception Value:
no such table: game_app_game
Exception Location: /home/Kulver/.virtualenvs/django16/lib/python2.7/site-packages/django/db/backends/sqlite3/base.py in execute, line 451
Index page with no db interaction loads well.
Help me please =)
Observing my sources is surely allowed. (Note that settings.py is overwitten by settings_local.py at the bottom of the script.)