courselab / pollex

Open Source Online Poll Application
GNU General Public License v3.0
1 stars 9 forks source link

Missing files #15

Closed monacofj closed 4 years ago

monacofj commented 4 years ago
pollex/pollex-flask$ make start
make: *** No rule to make target 'instance/*', needed by 'pollex:dev'.  Stop.

Looks like instance/* is missing

ET33 commented 4 years ago

The reason this happens is because instance/ should not pushed to the repository as it might contain sensitive information (it's included in .gitignore).

As a workaround you can simply create this directory manually and a config.py file inside it. I'll look into this later

monacofj commented 4 years ago

Updated pollex-flask/Makefile to create a local files as suggested. Now `make' builds image successfully. I think merging #18 would do it.