Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 3c447fa

Browse files
committed
add comments
1 parent 4e7845b commit 3c447fa

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

.env.sample

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
1+
# Tells next.js we're in development mode
12
VERCEL_ENV="development"
3+
4+
# Allows node to work with local self-signed certificates.
25
NODE_TLS_REJECT_UNAUTHORIZED="0"
6+
7+
# Your local WordPress URL.
38
LOCAL_WORDPRESS_API_URL="https://nextjswp.test/"
4-
PROD_WORDPRESS_API_URL="https://myproductionwordpress.com/"
9+
10+
# Your development WordPress URL.
11+
DEV_WORDPRESS_API_URL="https://devwordpress.com"
12+
13+
# Your staging WordPress URL.
14+
STAGING_WORDPRESS_API_URL="https://stagingwordpress.com/"
15+
16+
# Your production WordPress URL.
17+
PROD_WORDPRESS_API_URL="https://productionwordpress.com/"
18+
19+
# This needs to match PREVIEW_SECRET_TOKEN constant in wp-config.php. It can be any random string.
520
WORDPRESS_PREVIEW_SECRET="ANY_RANDOM_STRING_SEE_README"
21+
22+
# Your WordPress username.
623
WORDPRESS_APPLICATION_USERNAME="YOUR_WORDPRESS_USERNAME"
24+
25+
# Your WordPress application password. Requires WordPress 5.6 and above. See https://make.wordpress.org/core/2020/11/05/application-passwords-integration-guide/
726
WORDPRESS_APPLICATION_PASSWORD="YOUR_GENERATED_APPLICATION_PASSWORD"
27+
28+
# Your Algolia index name.
829
NEXT_PUBLIC_LOCAL_ALGOLIA_INDEX_NAME="YOUR_ALGOLIA_INDEX_NAME"
30+
31+
# Your Algolia application ID.
932
NEXT_PUBLIC_ALGOLIA_APPLICATION_ID="YOUR_ALGOLIA_APP_ID"
33+
34+
# Your Algolia search only key.
1035
NEXT_PUBLIC_ALGOLIA_SEARCH_ONLY_KEY="YOUR_ALGOLIA_SEARCH_ONLY_KEY"

0 commit comments

Comments
 (0)