← back to AbramsEgo
auto-save: 2026-07-01T10:11:20 (4 files) — .deploy.conf .gitignore ecosystem.config.cjs package.json
427fde241fdfe60f5328bc68e8393925deb3f8e8 · 2026-07-01 10:11:21 -0700 · Steve Abrams
Files touched
A .deploy.confA .gitignoreA ecosystem.config.cjsA package.json
Diff
commit 427fde241fdfe60f5328bc68e8393925deb3f8e8
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed Jul 1 10:11:21 2026 -0700
auto-save: 2026-07-01T10:11:20 (4 files) — .deploy.conf .gitignore ecosystem.config.cjs package.json
---
.deploy.conf | 9 +++++++++
.gitignore | 11 +++++++++++
ecosystem.config.cjs | 15 +++++++++++++++
package.json | 14 ++++++++++++++
4 files changed, 49 insertions(+)
diff --git a/.deploy.conf b/.deploy.conf
new file mode 100644
index 0000000..5601c7a
--- /dev/null
+++ b/.deploy.conf
@@ -0,0 +1,9 @@
+# AbramsEgo deploy config — consumed by ~/Projects/_shared/scripts/deploy.sh
+# NOTE: deploy to Kamatera is GATED (Steve sign-off). This file only declares intent.
+PROJECT_NAME=abramsego
+DEPLOY_HOST=45.61.58.125
+DEPLOY_PATH=/root/public-projects/abramsego
+HEALTH_URL=http://localhost:9773/api/healthz
+REQUIRED_ENVS=""
+INSTALL_CMD="npm ci --production"
+BUILD_CMD=""
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..ecd748b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+node_modules/
+.env
+.env.*
+tmp/
+*.log
+.DS_Store
+dist/
+build/
+.next/
+data/data.json
+data/kamatera-fleet.json
diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs
new file mode 100644
index 0000000..ea44e89
--- /dev/null
+++ b/ecosystem.config.cjs
@@ -0,0 +1,15 @@
+module.exports = {
+ apps: [{
+ name: "abramsego",
+ script: "server.js",
+ cwd: __dirname,
+ env: {
+ HOST: "0.0.0.0",
+ BIND: "0.0.0.0",
+ PORT: "9773",
+ NEXT_TELEMETRY_DISABLED: "1",
+ },
+ autorestart: true,
+ max_memory_restart: "300M",
+ }],
+};
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..798d1d5
--- /dev/null
+++ b/package.json
@@ -0,0 +1,14 @@
+{
+ "name": "abramsego",
+ "version": "0.1.0",
+ "private": true,
+ "description": "AbramsEgo — self-funding AI-agent command center for Steve's fleet",
+ "main": "server.js",
+ "scripts": {
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "basic-auth": "^2.0.1",
+ "express": "^4.21.2"
+ }
+}
(oldest)
·
back to AbramsEgo
·
AbramsEgo v0.1: self-funding agent command center — live col 04aa741 →