Spaces:
Sleeping
Sleeping
Commit ·
f6f86d2
1
Parent(s): cf40573
final: production-ready version
Browse files- .dockerignore +3 -3
- package.json +15 -8
.dockerignore
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
node_modules
|
| 2 |
.git
|
| 3 |
.gitignore
|
| 4 |
-
*.md
|
| 5 |
-
logs
|
| 6 |
-
data
|
| 7 |
.env
|
| 8 |
.env.example
|
|
|
|
|
|
|
|
|
|
| 9 |
test-system.mjs
|
|
|
|
| 1 |
node_modules
|
| 2 |
.git
|
| 3 |
.gitignore
|
|
|
|
|
|
|
|
|
|
| 4 |
.env
|
| 5 |
.env.example
|
| 6 |
+
logs
|
| 7 |
+
data
|
| 8 |
+
*.md
|
| 9 |
test-system.mjs
|
package.json
CHANGED
|
@@ -1,33 +1,40 @@
|
|
| 1 |
{
|
| 2 |
"name": "activity-simulator",
|
| 3 |
"version": "3.0.0",
|
| 4 |
-
"description": "
|
| 5 |
"main": "src/index.js",
|
| 6 |
"type": "module",
|
| 7 |
"scripts": {
|
| 8 |
"start": "node src/index.js",
|
|
|
|
| 9 |
"daemon": "node src/daemon.js",
|
| 10 |
"daemon:start": "pm2 start ecosystem.config.js --name activity-sim",
|
| 11 |
"daemon:stop": "pm2 stop activity-sim",
|
| 12 |
"daemon:logs": "pm2 logs activity-sim",
|
| 13 |
-
"simulate": "node src/cli.js simulate",
|
| 14 |
-
"setup": "node src/cli.js setup",
|
| 15 |
"status": "node src/cli.js status",
|
|
|
|
| 16 |
"lint": "eslint src/",
|
| 17 |
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
| 18 |
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
|
| 19 |
},
|
| 20 |
"keywords": [
|
| 21 |
"github",
|
| 22 |
-
"
|
| 23 |
-
"developer-
|
| 24 |
"sdlc",
|
| 25 |
"automation",
|
| 26 |
-
"
|
| 27 |
-
"human-behavior"
|
| 28 |
],
|
| 29 |
-
"author": "",
|
| 30 |
"license": "MIT",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
"dependencies": {
|
| 32 |
"@octokit/rest": "^21.0.0",
|
| 33 |
"@octokit/plugin-throttling": "^9.0.0",
|
|
|
|
| 1 |
{
|
| 2 |
"name": "activity-simulator",
|
| 3 |
"version": "3.0.0",
|
| 4 |
+
"description": "A learning project that simulates realistic developer workflows on GitHub - issues, PRs, code reviews, and the full SDLC",
|
| 5 |
"main": "src/index.js",
|
| 6 |
"type": "module",
|
| 7 |
"scripts": {
|
| 8 |
"start": "node src/index.js",
|
| 9 |
+
"simulate": "node src/cli.js simulate",
|
| 10 |
"daemon": "node src/daemon.js",
|
| 11 |
"daemon:start": "pm2 start ecosystem.config.js --name activity-sim",
|
| 12 |
"daemon:stop": "pm2 stop activity-sim",
|
| 13 |
"daemon:logs": "pm2 logs activity-sim",
|
|
|
|
|
|
|
| 14 |
"status": "node src/cli.js status",
|
| 15 |
+
"setup": "node src/cli.js setup",
|
| 16 |
"lint": "eslint src/",
|
| 17 |
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
| 18 |
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
|
| 19 |
},
|
| 20 |
"keywords": [
|
| 21 |
"github",
|
| 22 |
+
"learning",
|
| 23 |
+
"developer-workflow",
|
| 24 |
"sdlc",
|
| 25 |
"automation",
|
| 26 |
+
"student-project"
|
|
|
|
| 27 |
],
|
| 28 |
+
"author": "abedmohamed258",
|
| 29 |
"license": "MIT",
|
| 30 |
+
"repository": {
|
| 31 |
+
"type": "git",
|
| 32 |
+
"url": "https://github.com/abedmohamed258/activity-simulator.git"
|
| 33 |
+
},
|
| 34 |
+
"bugs": {
|
| 35 |
+
"url": "https://github.com/abedmohamed258/activity-simulator/issues"
|
| 36 |
+
},
|
| 37 |
+
"homepage": "https://github.com/abedmohamed258/activity-simulator#readme",
|
| 38 |
"dependencies": {
|
| 39 |
"@octokit/rest": "^21.0.0",
|
| 40 |
"@octokit/plugin-throttling": "^9.0.0",
|