Skip to content

Commit 913b17a

Browse files
committed
πŸš€ Initial commit: Setup Soplang Webhook project
1 parent dd51a01 commit 913b17a

File tree

9 files changed

+58
-0
lines changed

9 files changed

+58
-0
lines changed

β€Ž.github/workflows/commit-updates.ymlβ€Ž

Whitespace-only changes.

β€Ž.gitignoreβ€Ž

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Node.js dependencies
2+
node_modules/
3+
npm-debug.log
4+
yarn-error.log
5+
package-lock.json
6+
7+
# Environment variables
8+
.env
9+
10+
# Logs
11+
logs/
12+
*.log
13+
14+
# Ignore data files (except initial commit)
15+
# data/latest_project.txt
16+
17+
# Ignore future changes to JSON after initial commit
18+
# data/community_projects.json
19+
20+
# OS-specific files
21+
.DS_Store
22+
Thumbs.db
23+
24+
# IDE-specific files
25+
.vscode/
26+
.idea/
27+
*.swp
28+
29+
# PM2 logs (if using PM2)
30+
pm2.log

β€Žcontrollers/webhookController.jsβ€Ž

Whitespace-only changes.

β€Ždata/community_projects.jsonβ€Ž

Whitespace-only changes.

β€Ždata/latest_project.txtβ€Ž

Whitespace-only changes.

β€Žpackage.jsonβ€Ž

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "githubwebhook",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/soplang/githubWebhook.git"
12+
},
13+
"keywords": [],
14+
"author": "",
15+
"license": "ISC",
16+
"bugs": {
17+
"url": "https://github.com/soplang/githubWebhook/issues"
18+
},
19+
"homepage": "https://github.com/soplang/githubWebhook#readme",
20+
"dependencies": {
21+
"axios": "^1.8.2",
22+
"body-parser": "^1.20.3",
23+
"cors": "^2.8.5",
24+
"dotenv": "^16.4.7",
25+
"express": "^4.21.2",
26+
"fs": "^0.0.1-security"
27+
}
28+
}

β€Žroutes/webhook.jsβ€Ž

Whitespace-only changes.

β€Žserver.jsβ€Ž

Whitespace-only changes.

β€Žutils/fetchRepoDetails.jsβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)