aa407b5f67
Repo cleanup - Add top-level .gitignore (was missing; node_modules, .next, *.s9pk, image.tar, seed/data/*.db, log files, etc.) and a root README. - Delete legacy start9/0.3.5/ package (StartOS 0.3.5 wrapper, no longer the deploy target). - Delete start9-example-packaging/ (template from another project). - Delete planning docs (START9_PACKAGING_LOG.md, VERSIONING.md, STARTOS_0.4_UPGRADE_PROMPT.md, ICON_FILES_INDEX.md, etc.) — info now lives in the deploy guide and code comments. - Drop the standalone Dockerfile, docker-compose.yml, ICON_*, and dev log/build artifacts from the app dir. - Drop the v0.1.0:18/19/20 version files (they belonged to the legacy workout-log package and don't apply to the new id). Rename + new package - Rename app dir workout-planner/ -> proof-of-work/. - Rename StartOS package id workout-log -> proof-of-work; the new id makes this a brand new StartOS service (clean cutover from the old one rather than in-place upgrade). - Reset version graph; v1.0.0:1 is the seeded cutover release. The Dockerfile bakes a one-time /data snapshot and docker_entrypoint.sh copies it into the new volume on truly-fresh first boot only (both /data/app.db missing AND /data/.seeded absent). - Move start9/0.4-migration/ -> start9/0.4/; the old start9/0.4/ stub is gone. Curated exercise library (multi-user-aware) - proof-of-work/prisma/exercises.seed.json is the canonical library shipped to every install (164 exercises today, dumped from the live snapshot). - proof-of-work/scripts/sync-library.cjs (npm run sync-library) refreshes the JSON from start9/0.4/seed/data/app.db after refresh_seed.sh. - proof-of-work/prisma/seed.ts now reads from the JSON instead of a hardcoded 52-exercise array; runs at Docker build time to seed the fallback DB and on first boot for fresh installs. - proof-of-work/prisma/ensureExerciseLibrary.cjs runs on every container boot (from docker_entrypoint.sh) and INSERT OR IGNOREs every library entry for every user, keyed on (userId, name). Library updates flow to existing installs on package upgrade; user-custom exercises (isCustom=true) and any colliding names are never overwritten; removed exercises stay on existing installs (additive-only). Deploy guide (start9/0.4/DEPLOY_040.md) - Rewritten end-to-end for the workout-log -> proof-of-work cutover: refresh_seed, sync-library, build, sideload, verify, rotate creds, stop the old service, then post-cutover cleanup release v1.0.0:2.
164 lines
6.4 KiB
Makefile
164 lines
6.4 KiB
Makefile
# ** Plumbing. DO NOT EDIT **.
|
|
# This file is imported by ./Makefile. Make edits there
|
|
|
|
PACKAGE_ID := $(shell awk -F"'" '/id:/ {print $$2; exit}' startos/manifest/index.ts)
|
|
INGREDIENTS := $(shell start-cli s9pk list-ingredients 2>/dev/null)
|
|
ARCHES ?= x86 arm riscv
|
|
|
|
# Nested-package fixes for the upstream Start9 Makefile, which otherwise
|
|
# assumes the package dir == the git repo root. This package lives at
|
|
# start9/0.4/, so we need two small adjustments to make Make's
|
|
# prereq resolution work without rewriting ingredient names.
|
|
#
|
|
# (1) Git metadata paths. .git/HEAD and .git/index live at the repo root
|
|
# (or elsewhere for git worktrees), not at the package dir. Ask git
|
|
# for the canonical location via `git rev-parse --git-path`. Literal
|
|
# fallbacks preserve upstream behavior outside a git tree.
|
|
#
|
|
# (2) VPATH for ingredient search. `start-cli s9pk list-ingredients` emits
|
|
# paths in a *mixed* mode for nested packages:
|
|
#
|
|
# - package-local inputs (icon.png, assets/, LICENSE, and the
|
|
# compiled javascript/index.js) come out relative to the package
|
|
# dir (CWD). javascript/index.js is a build output: it doesn't
|
|
# exist before the first `npm run build`, and it's produced by
|
|
# the `javascript/index.js:` rule below.
|
|
# - Docker build inputs (the Dockerfile) come out relative to the
|
|
# manifest's images.*.source.dockerBuild.workdir, which for this
|
|
# package is '../..' -- i.e. the repo root.
|
|
#
|
|
# Setting VPATH to the repo root lets Make find workdir-relative
|
|
# inputs (e.g. start9/0.4/Dockerfile) there while leaving
|
|
# CWD-relative files that don't exist yet (e.g. javascript/index.js)
|
|
# to be built by their generating rule. We deliberately do NOT
|
|
# rewrite ingredient names to absolute paths -- doing that breaks
|
|
# the match between Make's `javascript/index.js:` rule and the
|
|
# prereq, which is how we got bitten previously.
|
|
REPO_ROOT := $(shell git rev-parse --show-toplevel 2>/dev/null)
|
|
GIT_HEAD_PATH := $(shell git rev-parse --git-path HEAD 2>/dev/null || echo .git/HEAD)
|
|
GIT_INDEX_PATH := $(shell git rev-parse --git-path index 2>/dev/null || echo .git/index)
|
|
|
|
VPATH := $(REPO_ROOT)
|
|
TARGETS ?= arches
|
|
ifdef VARIANT
|
|
BASE_NAME := $(PACKAGE_ID)_$(VARIANT)
|
|
else
|
|
BASE_NAME := $(PACKAGE_ID)
|
|
endif
|
|
|
|
.PHONY: all arches aarch64 x86_64 riscv64 arm arm64 x86 riscv arch/* clean install check-deps check-init package ingredients
|
|
.DELETE_ON_ERROR:
|
|
.SECONDARY:
|
|
|
|
define SUMMARY
|
|
@manifest=$$(start-cli s9pk inspect $(1) manifest); \
|
|
size=$$(du -h $(1) | awk '{print $$1}'); \
|
|
title=$$(printf '%s' "$$manifest" | jq -r .title); \
|
|
version=$$(printf '%s' "$$manifest" | jq -r .version); \
|
|
arches=$$(printf '%s' "$$manifest" | jq -r '[.images[].arch // []] | flatten | unique | join(", ")'); \
|
|
sdkv=$$(printf '%s' "$$manifest" | jq -r .sdkVersion); \
|
|
gitHash=$$(printf '%s' "$$manifest" | jq -r .gitHash | sed -E 's/(.*-modified)$$/\x1b[0;31m\1\x1b[0m/'); \
|
|
printf "\n"; \
|
|
printf "\033[1;32m✅ Build Complete!\033[0m\n"; \
|
|
printf "\n"; \
|
|
printf "\033[1;37m📦 $$title\033[0m \033[36mv$$version\033[0m\n"; \
|
|
printf "───────────────────────────────\n"; \
|
|
printf " \033[1;36mFilename:\033[0m %s\n" "$(1)"; \
|
|
printf " \033[1;36mSize:\033[0m %s\n" "$$size"; \
|
|
printf " \033[1;36mArch:\033[0m %s\n" "$$arches"; \
|
|
printf " \033[1;36mSDK:\033[0m %s\n" "$$sdkv"; \
|
|
printf " \033[1;36mGit:\033[0m %s\n" "$$gitHash"; \
|
|
echo ""
|
|
endef
|
|
|
|
all: $(TARGETS)
|
|
|
|
arches: $(ARCHES)
|
|
|
|
universal: $(BASE_NAME).s9pk
|
|
$(call SUMMARY,$<)
|
|
|
|
arch/%: $(BASE_NAME)_%.s9pk
|
|
$(call SUMMARY,$<)
|
|
|
|
x86 x86_64: arch/x86_64
|
|
arm arm64 aarch64: arch/aarch64
|
|
riscv riscv64: arch/riscv64
|
|
|
|
$(BASE_NAME).s9pk: $(INGREDIENTS) $(GIT_HEAD_PATH) $(GIT_INDEX_PATH)
|
|
@$(MAKE) --no-print-directory ingredients
|
|
@echo " Packing '$@'..."
|
|
start-cli s9pk pack -o $@
|
|
|
|
$(BASE_NAME)_%.s9pk: $(INGREDIENTS) $(GIT_HEAD_PATH) $(GIT_INDEX_PATH)
|
|
@$(MAKE) --no-print-directory ingredients
|
|
@echo " Packing '$@'..."
|
|
start-cli s9pk pack --arch=$* -o $@
|
|
|
|
ingredients: $(INGREDIENTS)
|
|
@echo " Re-evaluating ingredients..."
|
|
|
|
install: | check-deps check-init
|
|
@HOST=$$(awk -F'/' '/^host:/ {print $$3}' ~/.startos/config.yaml); \
|
|
if [ -z "$$HOST" ]; then \
|
|
echo "Error: You must define \"host: http://server-name.local\" in ~/.startos/config.yaml"; \
|
|
exit 1; \
|
|
fi; \
|
|
S9PK=$$(ls -t *.s9pk 2>/dev/null | head -1); \
|
|
if [ -z "$$S9PK" ]; then \
|
|
echo "Error: No .s9pk file found. Run 'make' first."; \
|
|
exit 1; \
|
|
fi; \
|
|
printf "\n🚀 Installing %s to %s ...\n" "$$S9PK" "$$HOST"; \
|
|
start-cli package install -s "$$S9PK"
|
|
|
|
publish: | all
|
|
@REGISTRY=$$(awk -F'/' '/^registry:/ {print $$3}' ~/.startos/config.yaml); \
|
|
if [ -z "$$REGISTRY" ]; then \
|
|
echo "Error: You must define \"registry: https://my-registry.tld\" in ~/.startos/config.yaml"; \
|
|
exit 1; \
|
|
fi; \
|
|
S3BASE=$$(awk -F'/' '/^s9pk-s3base:/ {print $$3}' ~/.startos/config.yaml); \
|
|
if [ -z "$$S3BASE" ]; then \
|
|
echo "Error: You must define \"s3base: https://s9pks.my-s3-bucket.tld\" in ~/.startos/config.yaml"; \
|
|
exit 1; \
|
|
fi; \
|
|
command -v s3cmd >/dev/null || \
|
|
(echo "Error: s3cmd not found. It must be installed to publish using s3." && exit 1); \
|
|
printf "\n🚀 Publishing to %s; indexing on %s ...\n" "$$S3BASE" "$$REGISTRY"; \
|
|
for s9pk in *.s9pk; do \
|
|
age=$$(( $$(date +%s) - $$(stat -c %Y "$$s9pk") )); \
|
|
if [ "$$age" -gt 3600 ]; then \
|
|
printf "\033[1;33m⚠️ %s is %d minutes old. Publish anyway? [y/N] \033[0m" "$$s9pk" "$$((age / 60))"; \
|
|
read -r ans; \
|
|
case "$$ans" in [yY]*) ;; *) echo "Skipping $$s9pk"; continue ;; esac; \
|
|
fi; \
|
|
start-cli s9pk publish "$$s9pk"; \
|
|
done
|
|
|
|
check-deps:
|
|
@command -v start-cli >/dev/null || \
|
|
(echo "Error: start-cli not found. Please see https://docs.start9.com/latest/developer-guide/sdk/installing-the-sdk" && exit 1)
|
|
@command -v npm >/dev/null || \
|
|
(echo "Error: npm not found. Please install Node.js and npm." && exit 1)
|
|
|
|
check-init:
|
|
@if [ ! -f ~/.startos/developer.key.pem ]; then \
|
|
echo "Initializing StartOS developer environment..."; \
|
|
start-cli init-key; \
|
|
fi
|
|
|
|
javascript/index.js: $(shell find startos -type f) tsconfig.json node_modules
|
|
npm run check
|
|
npm run build
|
|
|
|
node_modules: package-lock.json
|
|
npm ci
|
|
|
|
package-lock.json: package.json
|
|
npm i
|
|
|
|
clean:
|
|
@echo "Cleaning up build artifacts..."
|
|
@rm -rf $(PACKAGE_ID).s9pk $(PACKAGE_ID)_x86_64.s9pk $(PACKAGE_ID)_aarch64.s9pk $(PACKAGE_ID)_riscv64.s9pk javascript node_modules
|