The readme contains several references to a node subdirectory that should exists under server, e.g.
cp .env.example server/node/.env
These paths do not work for users who setup using the cli option; the boilerplate created by the cli omits the node subdirectory, promoting the node.js files directly under server like so:
> ls server/
README.md node_modules package-lock.json package.json server.js
The readme contains several references to a
nodesubdirectory that should exists underserver, e.g.cp .env.example server/node/.env
These paths do not work for users who setup using the cli option; the boilerplate created by the cli omits the
nodesubdirectory, promoting the node.js files directly under server like so: