chore: add .env file to be public for /apps/www

This commit is contained in:
Jonathan Summers-Muir
2022-04-30 00:19:43 +08:00
parent d4d3d37a7d
commit 8948a388cc
2 changed files with 9 additions and 0 deletions

2
.gitignore vendored
View File

@@ -79,6 +79,8 @@ typings/
# dotenv environment variables file
.env
# excempt the apps/www .env
!apps/www/.env
.env.test
.env.local
.env.production

7
apps/www/.env Normal file
View File

@@ -0,0 +1,7 @@
# this is a public env file
# do not use secrets in this file
# Replace this URL with the URL of your blog app
NEXT_PUBLIC_URL="https://localhost:3000"
NEXT_PUBLIC_DOCS_URL="http://localhost:3005"
NEXT_PUBLIC_STUDIO_URL="https://localhost:8082"