Deploy This Wiki
This wiki is a Nextra 4 + Next.js app. It deploys to Vercel with zero
configuration and lives on an ALLSoft Agency subdomain (e.g.
wiki.allsoftagency.ro).
Local build
npm install
npm run dev # http://localhost:3000
npm run build # production buildOption A — Deploy via GitHub (recommended)
Push the repo to GitHub
git add -A
git commit -m "Citera wiki"
git remote add origin git@github.com:allsoftagency/citera-wiki.git
git push -u origin mainImport into Vercel
Go to vercel.com → Add New → Project → Import and select citera-wiki.
Vercel auto-detects Next.js — no build settings needed.
Deploy
Click Deploy. Every future git push to main triggers an automatic
production deploy; pull requests get preview URLs.
Option B — Deploy via Vercel CLI
Install and log in
npm i -g vercel
vercel login # opens a browser to authenticateDeploy
vercel # first run links/creates the project
vercel --prod # promote to productionAdd the subdomain
Add the domain in Vercel
Project → Settings → Domains → add wiki.allsoftagency.ro.
Point DNS at Vercel
At the registrar for allsoftagency.ro, add a CNAME:
| Type | Name | Value |
|---|---|---|
CNAME | wiki | cname.vercel-dns.com |
Wait for verification
Vercel verifies the record and provisions HTTPS automatically (usually a few minutes).
Prefer a different subdomain? Swap wiki for docs, citera, etc. — the steps
are identical. Update metadataBase in app/layout.jsx to match.
Editing content
- All pages live under
content/as.mdx. - Navigation order is controlled by
_meta.jsfiles in each folder. - Commit and push — Vercel redeploys automatically (Option A) or run
vercel --prod(Option B).
This wiki and the Shopify theme are separate projects. Deploying the wiki does not touch the Citera store, and pushing the theme does not touch the wiki.