-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Hi, I found your project today and am interested in playing with it.
This command is in DEVNOTES.MD:
docker exec -i $(docker ps | grep postgres | awk '{ print $1 }') psql -U iss_user -v -d iss < seed-data.sql
This command will fail if docker ps | grep postgres | awk '{ print $1 }' returns more than one container, say for example if there is another project with a postgres container on the dev machine. You can easily get around it though by just getting the container ID manually.
While I am familiar with Django and Docker, I'm not familiar with the tools you're using for the frontend.
I get these errors
statics-1 | [23:08:40] Using gulpfile ~/static-builder/gulpfile.js
statics-1 | [23:08:40] Starting 'watch'...
statics-1 | [23:08:40] Starting 'generate'...
statics-1 | [23:08:40] Starting 'less'...
statics-1 | [23:08:40] Starting 'smilies'...
statics-1 | [23:08:40] Starting 'jpgs'...
statics-1 | [23:08:40] Starting 'javascript'...
statics-1 | [23:08:40] Starting 'icons'...
statics-1 | (node:19) DeprecationWarning: sprintf() will be removed in the next major release, use the sprintf-js package instead.
statics-1 | (Use `node --trace-deprecation ...` to show where the warning was created)
statics-1 | [23:08:40] 'smilies' errored after 77 ms
statics-1 | [23:08:40] Error: EACCES: permission denied, mkdir '/home/node/static-builder/dist/img/gif'
statics-1 | [23:08:40] 'generate' errored after 78 ms
statics-1 | [23:08:40] 'watch' errored after 81 ms
statics-1 exited with code 1
The result is that the app starts up with the correct data but there is no static files
I'll play around it with it and see if I can figure it out, but I thought I'd let you know about the issues I encountered so far following the instructions.