1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-dotenv
Fredrik Höglund 2ab1ae7f61 Updated examples for build-time env configuration for v8 (#6237)
* Updated examples for build-time env configuration for v8

* Add comment to build time config example with how to include entire .env
2019-02-11 14:15:06 +01:00
..
pages Add prettier for examples directory (#5909) 2018-12-17 17:34:32 +01:00
.env with-dotenv example (#2399) 2017-06-29 08:32:45 +02:00
next.config.js Add prettier for examples directory (#5909) 2018-12-17 17:34:32 +01:00
package.json Test updater script on examples folder (#5993) 2019-01-05 12:19:27 +01:00
README.md Updated examples for build-time env configuration for v8 (#6237) 2019-02-11 14:15:06 +01:00

Deploy to now

With Dotenv example

How to use

Using create-next-app

Execute create-next-app with Yarn or npx to bootstrap the example:

npx create-next-app --example with-dotenv with-dotenv-app
# or
yarn create next-app --example with-dotenv with-dotenv-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-dotenv
cd with-dotenv

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with now (download)

now

The idea behind the example

This example shows how to inline env vars.

Please note:

  • It is a bad practice to commit env vars to a repository. Thats why you should normally gitignore your .env file.
  • In this example, as soon as you reference an env var in your code it will be automatically be publicly available and exposed to the client.
  • If you want to have more centralized control of what is exposed to the client check out the example with-universal-configuration-build-time.
  • Env vars are set (inlined) at build time. If you need to configure your app on rutime check out examples/with-universal-configuration-runtime.