fatma-app 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +6 -2
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/dinweldik/fatma/main/assets/prod/logo.svg" alt="fatma logo" width="140" />
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# fatma-app
|
|
6
|
+
|
|
7
|
+
`fatma-app` is a mobile-friendly web UI for running Codex across a whole folder of local projects from one place.
|
|
8
|
+
|
|
9
|
+
Run it in the parent directory that contains your repos, open the web UI, and jump into any project to:
|
|
10
|
+
|
|
11
|
+
- run Codex on a selected repo
|
|
12
|
+
- start dev servers and shell commands from the browser
|
|
13
|
+
- inspect diffs and commit changes
|
|
14
|
+
- create new projects and prototype ideas quickly
|
|
15
|
+
- keep working remotely from your phone through Tailscale
|
|
16
|
+
- receive Telegram notifications when Codex finishes or needs input
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
> [!WARNING]
|
|
21
|
+
> You need [Codex CLI](https://github.com/openai/codex) installed and authorized before `fatma-app` can do useful work.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npx fatma-app
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
To expose it on your network without opening a browser locally:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npx fatma-app --host 0.0.0.0 --no-browser
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
That works well on a home server or VPS. Publish the port through Tailscale, open the URL on your phone, and keep your projects available from anywhere.
|
|
34
|
+
|
|
35
|
+
## What It Is For
|
|
36
|
+
|
|
37
|
+
Most developers do not have one project. They have a directory full of them: work repos, abandoned hobby apps, new experiments, client work, and side projects they want to turn into something bigger.
|
|
38
|
+
|
|
39
|
+
`fatma-app` turns that projects directory into a single control surface for Codex, so you do not need to bounce between terminals and machines just to keep momentum.
|
|
40
|
+
|
|
41
|
+
## Repository
|
|
42
|
+
|
|
43
|
+
- GitHub: https://github.com/dinweldik/fatma
|
|
44
|
+
- Monorepo README: https://github.com/dinweldik/fatma/blob/main/README.md
|
package/dist/index.cjs
CHANGED
|
@@ -17215,7 +17215,7 @@ const getTelemetryIdentifier = effect.Effect.gen(function* () {
|
|
|
17215
17215
|
|
|
17216
17216
|
//#endregion
|
|
17217
17217
|
//#region package.json
|
|
17218
|
-
var version = "1.0.
|
|
17218
|
+
var version = "1.0.26";
|
|
17219
17219
|
|
|
17220
17220
|
//#endregion
|
|
17221
17221
|
//#region src/telemetry/Layers/AnalyticsService.ts
|
package/dist/index.mjs
CHANGED
|
@@ -17170,7 +17170,7 @@ const getTelemetryIdentifier = Effect.gen(function* () {
|
|
|
17170
17170
|
|
|
17171
17171
|
//#endregion
|
|
17172
17172
|
//#region package.json
|
|
17173
|
-
var version = "1.0.
|
|
17173
|
+
var version = "1.0.26";
|
|
17174
17174
|
|
|
17175
17175
|
//#endregion
|
|
17176
17176
|
//#region src/telemetry/Layers/AnalyticsService.ts
|
package/package.json
CHANGED
|
@@ -2,14 +2,18 @@
|
|
|
2
2
|
"name": "fatma-app",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
|
-
"url": "https://github.com/dinweldik/
|
|
5
|
+
"url": "git+https://github.com/dinweldik/fatma.git",
|
|
6
6
|
"directory": "apps/server"
|
|
7
7
|
},
|
|
8
|
+
"homepage": "https://github.com/dinweldik/fatma#readme",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/dinweldik/fatma/issues"
|
|
11
|
+
},
|
|
8
12
|
"bin": {
|
|
9
13
|
"fatma-app": "./dist/index.mjs"
|
|
10
14
|
},
|
|
11
15
|
"type": "module",
|
|
12
|
-
"version": "1.0.
|
|
16
|
+
"version": "1.0.26",
|
|
13
17
|
"engines": {
|
|
14
18
|
"node": "^22.13 || ^23.4 || >=24.10"
|
|
15
19
|
},
|