You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just for other newbies, since it took me a minute to realize what was happening:
This step is meant to copy the file "docker/docker.env.sample" (default settings for the project) to "docker/docker.env". On Windows, it results in:
...\chipy.org> make setup_env
'##' is not recognized as an internal or external command,
operable program or batch file.
make: *** [Makefile:8: setup_env] Error 1
That make setup_env command attempts to run cp -n docker/docker.env.sample docker.docker.env || true which doesn't work on Windows due to it not recognizing the -n flag and || true bit at the end.
In the meantime, using cp docker/docker.env.sample docker/docker.env in Powershell from the .\chipy.org directory should work. Alternatively, you can copy + rename the file manually in File Explorer.
Problem:
Steps say that we should run make setup_env before spinning up docker for the first time. This did not work on windows.
Requirements:
Solution needs to work on windows, linux, and MacOS.
The text was updated successfully, but these errors were encountered: