Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit cb41f6f

Browse files
committed
ignoring all .env files. added vscode launch config
1 parent 6c5ce9f commit cb41f6f

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ node_modules/
44
.DS_Store
55
.nyc_output
66
coverage/
7-
.env
7+
*.env

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"envFile": "${workspaceFolder}/dev.env",
12+
"skipFiles": [
13+
"<node_internals>/**"
14+
],
15+
"program": "${workspaceFolder}/src/app.js"
16+
17+
}
18+
]
19+
}

0 commit comments

Comments
 (0)