Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 2ea47e5

Browse files
committed
Add package.json and fork instruction
1 parent ec1a9d3 commit 2ea47e5

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# app-playground
2-
Playground for GitHub Apps
2+
3+
Fork this repository to your personal account and then let the apps run loose :rocket:

index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log("I am a very advanced JavaScript application")

package.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "app-playground",
3+
"version": "1.0.0",
4+
"description": "A playground for GitHub Apps",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "node index.js"
8+
},
9+
"author": "Wilhelm Klopp",
10+
"license": "ISC",
11+
"dependencies": {
12+
"express": "^4.16.3",
13+
"helmet": "^3.14.0"
14+
}
15+
}

0 commit comments

Comments
 (0)