英文:
How to use a .env file while deploying it on Render
问题
如何在部署到Render时使用.env文件。
我将完整的源代码推送到Github(除了.env和node_modules),在这里我将我的.env放在.gitignore中。在GitHub上,.env文件不存在。现在如何将.env的内容用于我的项目。
英文:
How to use a .env file while deploying it on Render.
I pushed my complete source code to Github (except .env and node_modules) where I put my .env into .gitignore. On github, .env file is not there. Now how to use .env content into my project.
答案1
得分: 1
你可以选择添加秘密文件或单独的环境变量。
Ref: 这在官方文档中有详细说明。
英文:
You can either add secret files or individual environment variables.
Ref: This is documented in the official documentation.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论