So I downloaded this project (https://github.com/alectrocute/flasksaas) on my machine. Interesting is, that on my other computer everything works great, but not on this one. I am stuck at the point, where I want to initialize the database with following command:
$python manage.py initdb
I reinstalled python, the modules etc., but it doesn't help. I checked my system environment variables in the settings (OS: Windows), everything seems fine.
Error which occurs:
Traceback (most recent call last):
File "manage.py", line 4, in <module>
__init__.py, line 6, in <module>
app.config.from_object('app.config')
NameError: name 'config_dev' is not defined
Expected result: "SQL database has been created."
make install && make dev? – Julian Camilleri Apr 5 '19 at 12:31make install && make devdoes not work, because this command is for MacOS. – spacew4lker Apr 5 '19 at 12:54