You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# A NodeJs Project Kickstarter Biolerplate
2
2
Clean, minimalistic boilerplate to start your NodeJs project.
3
3
4
-
NodeJS is far too powerful to be limited to just running your website. Whether building a website, comminicating with the database or writing a script to automate a file process, you can't go wrong with NodeJS.
4
+
NodeJS is far too powerful to be limited to just running your website. Whether building a website, communicating with the database or writing a script to automate a file process, you can't go wrong with NodeJS.
5
5
6
6
### ⭐ Good for
7
7
- Building a worker scripts.
@@ -52,7 +52,7 @@ But the sole purpose of using .env file for our project is to secure our credent
52
52
│ └── hello-world.js
53
53
│
54
54
├── .env.example
55
-
├── .env
55
+
├── .env // store all your credentials here
56
56
├── .plans
57
57
├── .gitignore
58
58
├── app.js
@@ -62,6 +62,9 @@ But the sole purpose of using .env file for our project is to secure our credent
62
62
### Initial Dependency
63
63
- [ckey](https://www.npmjs.com/package/ckey) - a [dotenv](https://github.com/motdotla/dotenv) helper for accessing process.env object from sub-directory.
64
64
65
+
### Storing Credentials in .env file
66
+
- This is where you put your login credentials, secret keys, and other confidential information. Never include when you commit your repository. Make sure it is included in .gitignore file so it wont be included.
67
+
65
68
### 💬 Tech Support
66
69
- If things went wrong, google it first. People ahead of you have had similar issues in the past and solved it.
67
70
- Last resort. -- Contact Jorge. He'd be happy to help you.
0 commit comments