osaet/frontend/admin
yarnom f0b50d13ea feat: add admin publishing workflow and yar theme
Add Go/Postgres admin APIs, Angular admin UI, manual build flow, asset uploads, markdown import/export, configurable slug generation, and the Yar reading theme. Exclude local docs and generated development artifacts from version control.
2026-06-01 15:48:04 +08:00
..
src feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
angular.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
package-lock.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
package.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
proxy.conf.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
README.md feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
tsconfig.app.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00
tsconfig.json feat: add admin publishing workflow and yar theme 2026-06-01 15:48:04 +08:00

Osaet Admin

Angular admin UI for the Osaet Gin API.

Development

Start the Go admin API first:

cd /home/yarnom/Codes/osaet/backend
DATABASE_URL='postgres://yarnom:数据库密码@10.66.0.30:5432/osaet?sslmode=disable' \
go run ./cmd/osaet-admin serve

Install dependencies and start Angular:

cd /home/yarnom/Codes/osaet/frontend/admin
npm install
npm start

Open:

http://127.0.0.1:4200/

The Angular dev server proxies /api, /healthz, and /readyz to http://127.0.0.1:8080.