Port meetups, discussions, gigs, dating/chat, VIP pay (ZPay/XorPay), MiroTalk live, digital academy, and ebook reader. Add persistent community_store, git-first deploy docs, and env template for production secrets. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
457 B
JSON
13 lines
457 B
JSON
{
|
|
"name": "nomadro",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "powershell -ExecutionPolicy Bypass -File scripts/dev.ps1",
|
|
"dev:api": "cd backend && uvicorn app.main:app --reload --port 8000",
|
|
"dev:web": "cd frontend && npm run dev",
|
|
"install:all": "cd backend && pip install -r requirements.txt && cd ../frontend && npm install",
|
|
"seed": "cd backend && python seed_pocketbase.py",
|
|
"build:web": "cd frontend && npm run build"
|
|
}
|
|
}
|