61 lines
1.0 KiB
Markdown
61 lines
1.0 KiB
Markdown
# ⚡ 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
|
|
```bash
|
|
cd backend
|
|
npm install
|
|
cp env.example .env # Edit with your database credentials
|
|
npm start # Runs on http://localhost:3000
|
|
```
|
|
|
|
### Frontend
|
|
```bash
|
|
cd luckychit
|
|
flutter pub get
|
|
flutter run -d chrome # Opens in browser
|
|
```
|
|
|
|
---
|
|
|
|
## 🚀 For Ops: Deploy to Production
|
|
|
|
```bash
|
|
ssh luckychit@192.168.8.148
|
|
cd /home/luckychit/apps/chitfund
|
|
./scripts/deploy.sh
|
|
```
|
|
|
|
That's it! See [DEPLOYMENT.md](DEPLOYMENT.md) for details.
|
|
|
|
---
|
|
|
|
## 🆘 Something Broken?
|
|
|
|
```bash
|
|
./scripts/diagnose.sh # Shows what's wrong
|
|
```
|
|
|
|
See [TROUBLESHOOTING.md](TROUBLESHOOTING.md) for fixes.
|
|
|
|
---
|
|
|
|
## 📚 Need More Info?
|
|
|
|
- **Deployment**: [DEPLOYMENT.md](DEPLOYMENT.md)
|
|
- **Troubleshooting**: [TROUBLESHOOTING.md](TROUBLESHOOTING.md)
|
|
- **Full README**: [README.md](README.md)
|