mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
🧑💻 feat(dx): improve local development experience
- Add dev credentials pre-fill on login page (dev@manacore.local) - Add initialPassword prop to LoginPage component - Add seed script for dev user (pnpm db:seed:dev in mana-core-auth) - Add OLLAMA_URL to .env.development for Mac Mini connection
This commit is contained in:
parent
ca00672016
commit
e72f3b7865
5 changed files with 138 additions and 4 deletions
|
|
@ -71,6 +71,11 @@ DEV_USER_ID=00000000-0000-0000-0000-000000000000
|
|||
# Get your API key at https://openrouter.ai/keys
|
||||
OPENROUTER_API_KEY=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
|
||||
|
||||
# Ollama (local LLM server - runs on Mac Mini)
|
||||
# Use SSH tunnel: ssh -L 11434:localhost:11434 mana-server
|
||||
# Or set to direct URL if Ollama is exposed (e.g., https://ollama.mana.how)
|
||||
OLLAMA_URL=http://localhost:11434
|
||||
|
||||
# ============================================
|
||||
# MAERCHENZAUBER PROJECT
|
||||
# ============================================
|
||||
|
|
@ -160,6 +165,14 @@ NUTRIPHI_S3_PUBLIC_URL=http://localhost:9000/nutriphi-storage
|
|||
ZITARE_BACKEND_PORT=3007
|
||||
ZITARE_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/zitare
|
||||
|
||||
# ============================================
|
||||
# ZITARE TELEGRAM BOT
|
||||
# ============================================
|
||||
|
||||
ZITARE_BOT_PORT=3303
|
||||
ZITARE_BOT_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/zitare_bot
|
||||
ZITARE_BOT_TELEGRAM_TOKEN=
|
||||
|
||||
# ============================================
|
||||
# PRESI PROJECT
|
||||
# ============================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue