mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* feat(web): add the ReMe workspace frontend * fix(web): use public npm registry in lockfile * fix(web): address workspace review feedback * fix(web): protect drafts and report file limits * fix(web): finish chat streams after tab switches * feat(web): rename frontend to ReMe Studio |
||
|---|---|---|
| .. | ||
| .openai | ||
| app | ||
| build | ||
| db | ||
| drizzle/meta | ||
| examples/d1 | ||
| public | ||
| tests | ||
| worker | ||
| .env.example | ||
| .gitignore | ||
| .prettierignore | ||
| cloudflare-env.d.ts | ||
| drizzle.config.ts | ||
| eslint.config.mjs | ||
| next-env.d.ts | ||
| next.config.ts | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.mjs | ||
| README.md | ||
| tsconfig.json | ||
| vite.config.ts | ||
ReMe Studio
Local web studio for browsing ReMe files, editing and previewing Markdown, exploring memory graphs, and streaming conversations with the ReMe Agent.
Development
Requirements: Node.js 22.13+ and a running ReMe HTTP service.
# From the repository root, start ReMe in one terminal.
reme start
# Start the web interface in another terminal.
cd website
npm install
npm run dev
Open http://localhost:3000. The frontend connects to
http://127.0.0.1:2333 by default. Override it when needed:
NEXT_PUBLIC_REME_API_URL=http://127.0.0.1:8000 npm run dev
The workspace hides dotfiles and dot-directories. It displays only Markdown and
text files by default. Configure the allowed extensions as a comma-separated
list in .env.local:
NEXT_PUBLIC_REME_WORKSPACE_EXTENSIONS=md,txt,mdx
Useful checks:
npm run lint
npx tsc --noEmit
npm run build
npm test