jobtrack 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +37 -0
  2. package/package.json +7 -1
package/README.md ADDED
@@ -0,0 +1,37 @@
1
+ # jobtrack
2
+
3
+ A personal job-application tracker, packaged as a single command. It runs the API and the
4
+ built web UI as one background process, with a Windows tray icon (open UI / toggle
5
+ autostart / open settings / quit) — no terminal window, no separate dev server.
6
+
7
+ Record what you applied for, where and when; find it again by meaning rather than exact
8
+ wording; and see *before* you enter a new application whether you've already been down that
9
+ road with the same company. Single user, runs on your machine, data in a local SQLite file.
10
+
11
+ ## Install
12
+
13
+ ```bash
14
+ npm install -g jobtrack
15
+ jobtrack
16
+ ```
17
+
18
+ Requires **Node.js 24+** already installed on the machine — this runs the app's TypeScript
19
+ sources via `tsx` rather than shipping a compiled, dependency-free binary.
20
+
21
+ ## What you get
22
+
23
+ - **Open JobTrack** — opens the UI in your default browser.
24
+ - **Autostart with Windows** — toggles a per-user Registry Run key, no admin rights needed.
25
+ - **Open App Settings** — opens `.env` in Notepad, seeded from a template on first use.
26
+ - **Quit** — stops the server and the tray icon together.
27
+
28
+ Windows only for the tray icon today — elsewhere, `jobtrack` still runs the combined server,
29
+ just without a tray icon (Ctrl+C to stop).
30
+
31
+ Data (SQLite database, model cache, active-DB-target pointer) lives under a per-user
32
+ `JOBTRACK_HOME` directory (`%APPDATA%\jobtrack` by default on Windows).
33
+
34
+ ## Source
35
+
36
+ <https://github.com/CuplexUser/JobTrack> — see the main repo README for the full feature set,
37
+ MCP server, CSV/Excel import, and backup/restore.
package/package.json CHANGED
@@ -1,8 +1,14 @@
1
1
  {
2
2
  "name": "jobtrack",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Runs the JobTrack API + web UI as one background process with a Windows tray icon",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/CuplexUser/JobTrack.git",
9
+ "directory": "apps/tray"
10
+ },
11
+ "homepage": "https://github.com/CuplexUser/JobTrack#readme",
6
12
  "main": "./src/cli.ts",
7
13
  "bin": {
8
14
  "jobtrack": "./bin/jobtrack.js"