Skip to content

Commit

Permalink
docs: enhance README with instructions on setting up the .env.local file
Browse files Browse the repository at this point in the history
  • Loading branch information
tokerson committed May 7, 2024
1 parent ff3c453 commit 676a8bc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/twelve-emus-hear.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"react-starter-boilerplate": patch
---

Enhance README with instructions on setting up the .env.local file
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# misc
.DS_Store
.env.babelsheet
.env
.env.local

# editor files
.idea/
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ git commit -m 'Initial commit'
git push origin master
```

6. Copy the `.env.dist` file to `.env.local` and populate the environment variables with the values used in the local environment

```shell
cp .env.dist .env.local
```

Now, your project is bootstrapped successfully! 🎉

You can install dependencies and start developing your React application 🚀
Expand Down

0 comments on commit 676a8bc

Please sign in to comment.