36 lines
550 B
Markdown
36 lines
550 B
Markdown
# termi-blog
|
|
|
|
Monorepo for the Termi blog system.
|
|
|
|
## Structure
|
|
|
|
```text
|
|
.
|
|
├─ frontend/ # Astro blog frontend
|
|
├─ backend/ # Loco.rs backend and admin
|
|
├─ .codex/ # Codex workspace config
|
|
└─ .vscode/ # Editor workspace config
|
|
```
|
|
|
|
## Run
|
|
|
|
### Frontend
|
|
|
|
```powershell
|
|
cd frontend
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
### Backend
|
|
|
|
```powershell
|
|
cd backend
|
|
$env:DATABASE_URL="postgres://postgres:postgres%402025%21@10.0.0.2:5432/termi-api_development"
|
|
cargo loco start 2>&1
|
|
```
|
|
|
|
## Repo Name
|
|
|
|
Recommended repository name: `termi-blog`
|