Skip to content

Commit

Permalink
docs: clarify .env usage in CONTRIBUTING.md [skip release] (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Jan 11, 2021
1 parent 416d92c commit e7e8e0f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Rename file to .env and populate values
# to be able to run tests
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_TWITTER_ID=
NEXTAUTH_TWITTER_SECRET=
Expand Down
6 changes: 6 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Rename file to .env.local and populate values
# to be able to run the dev app
NEXTAUTH_URL=http://localhost:3000
SECRET=
GITHUB_ID=
GITHUB_SECRET=
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ npm i

3. Populate `.env.local`:

Copy `.env.example` to `.env.local`, and add your env variables for each provider you want to test.
Copy `.env.local.example` to `.env.local`, and add your env variables for each provider you want to test.

>NOTE: You can configure providers of the dev app in `pages/api/auth/[...nextauth].js`
> NOTE: You can add any environment variables to .env.local that you would like to use in your dev app.
> You can find the next-auth config under`pages/api/auth/[...nextauth].js`.
4. Start the dev application/server and CSS watching:
1. Start the dev application/server and CSS watching:
```sh
npm run dev
```
Expand Down

0 comments on commit e7e8e0f

Please sign in to comment.