chitfund/QUICK_START.md

1.0 KiB

Quick Start - LuckyChit

Get up and running in 5 minutes!


🎯 For Users: Access the App

Production URL: https://chitfund.deepteklabs.com

That's it! Just open the link and login.


👨‍💻 For Developers: Local Development

Backend

cd backend
npm install
cp env.example .env    # Edit with your database credentials
npm start              # Runs on http://localhost:3000

Frontend

cd luckychit
flutter pub get
flutter run -d chrome  # Opens in browser

🚀 For Ops: Deploy to Production

ssh luckychit@192.168.8.148
cd /home/luckychit/apps/chitfund
./scripts/deploy.sh

That's it! See DEPLOYMENT.md for details.


🆘 Something Broken?

./scripts/diagnose.sh  # Shows what's wrong

See TROUBLESHOOTING.md for fixes.


📚 Need More Info?