DEV Community

Isabella Liu
Isabella Liu

Posted on

Release 0.3.2

For the Telescope contribution part, I found a very simple issue to work on, which made me happy for several days. The issue is https://github.com/Seneca-CDOT/telescope/issues/1261. David pointed out that the system would throw an error saying no .env file while there is one.

$ docker compose up --build
...
telescope_1      |
telescope_1      | > @seneca/telescope@1.3.0 start /telescope
telescope_1      | > node src/backend
telescope_1      |
telescope_1      | [ 2020-11-01 20:00:18.247 ] ERROR (17 on af53c261a8b0):
telescope_1      |
telescope_1      |  💡 It appears that you have not yet configured a .env file.
telescope_1      |     Please refer to our documentation regarding environment configuration:
telescope_1      |     https://github.com/Seneca-CDOT/telescope/blob/master/docs/CONTRIBUTING.md
telescope_1      |
telescope_1      | [ 2020-11-01 20:00:18.318 ] INFO  (17 on af53c261a8b0): Attempting to use default env in /telescope/env.example instead.
Enter fullscreen mode Exit fullscreen mode

I read the comments below this issue, and found that c3ho already mentioned how to solve this problem. I followed his guide and found it did solve the problem, although I don't fully understand the difference. The change I've made is as below:
Alt Text

The pull request is https://github.com/Seneca-CDOT/telescope/pull/1320.

Top comments (0)