Compare commits
12 Commits
feature/is
...
76c4a875ff
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
76c4a875ff | ||
|
|
2635483dbc | ||
| f6300c890b | |||
|
|
8a9f8f7fdd | ||
|
|
bd000649e3 | ||
|
|
1ed51c3667 | ||
|
|
76a229952f | ||
|
|
c5870f9e6f | ||
|
|
0ba695f159 | ||
| 7f9a92994c | |||
|
|
401d40fbe2 | ||
| 915b4fad5f |
@@ -57,6 +57,21 @@
|
||||
/>
|
||||
</UFormGroup>
|
||||
|
||||
<!-- Low Stock Threshold -->
|
||||
<UFormGroup
|
||||
label="Low Stock Alert"
|
||||
hint="Optional - Alert when quantity falls below this"
|
||||
>
|
||||
<UInput
|
||||
v-model.number="form.low_stock_threshold"
|
||||
type="number"
|
||||
min="0"
|
||||
step="0.1"
|
||||
placeholder="e.g. 2"
|
||||
size="lg"
|
||||
/>
|
||||
</UFormGroup>
|
||||
|
||||
<!-- Notes -->
|
||||
<UFormGroup label="Notes" hint="Optional">
|
||||
<UTextarea
|
||||
@@ -121,6 +136,7 @@ const form = reactive({
|
||||
quantity: 1,
|
||||
unit_id: '',
|
||||
expiry_date: '',
|
||||
low_stock_threshold: null as number | null,
|
||||
notes: ''
|
||||
})
|
||||
|
||||
@@ -210,6 +226,7 @@ const handleSubmit = async () => {
|
||||
quantity: form.quantity,
|
||||
unit_id: form.unit_id,
|
||||
expiry_date: form.expiry_date || null,
|
||||
low_stock_threshold: form.low_stock_threshold,
|
||||
notes: form.notes.trim() || null
|
||||
})
|
||||
|
||||
|
||||
@@ -55,6 +55,21 @@
|
||||
/>
|
||||
</UFormGroup>
|
||||
|
||||
<!-- Low Stock Threshold -->
|
||||
<UFormGroup
|
||||
label="Low Stock Alert"
|
||||
hint="Optional - Alert when quantity falls below this"
|
||||
>
|
||||
<UInput
|
||||
v-model.number="form.low_stock_threshold"
|
||||
type="number"
|
||||
min="0"
|
||||
step="0.1"
|
||||
placeholder="e.g. 2"
|
||||
size="lg"
|
||||
/>
|
||||
</UFormGroup>
|
||||
|
||||
<!-- Notes -->
|
||||
<UFormGroup label="Notes" hint="Optional">
|
||||
<UTextarea
|
||||
@@ -112,6 +127,7 @@ const form = reactive({
|
||||
quantity: 1,
|
||||
unit_id: '',
|
||||
expiry_date: '',
|
||||
low_stock_threshold: null as number | null,
|
||||
notes: ''
|
||||
})
|
||||
|
||||
@@ -136,6 +152,7 @@ watch(() => props.item, (newItem) => {
|
||||
form.quantity = Number(newItem.quantity)
|
||||
form.unit_id = newItem.unit_id
|
||||
form.expiry_date = newItem.expiry_date || ''
|
||||
form.low_stock_threshold = newItem.low_stock_threshold || null
|
||||
form.notes = newItem.notes || ''
|
||||
isOpen.value = true
|
||||
}
|
||||
@@ -168,6 +185,7 @@ const handleSubmit = async () => {
|
||||
quantity: form.quantity,
|
||||
unit_id: form.unit_id,
|
||||
expiry_date: form.expiry_date || null,
|
||||
low_stock_threshold: form.low_stock_threshold,
|
||||
notes: form.notes.trim() || null
|
||||
})
|
||||
|
||||
|
||||
@@ -72,6 +72,18 @@
|
||||
{{ expiryText }}
|
||||
</UBadge>
|
||||
</div>
|
||||
|
||||
<!-- Low Stock Warning -->
|
||||
<div v-if="isLowStock" class="text-xs">
|
||||
<UBadge
|
||||
color="orange"
|
||||
variant="soft"
|
||||
class="w-full justify-center"
|
||||
>
|
||||
<UIcon name="i-heroicons-exclamation-triangle" class="mr-1" />
|
||||
Low stock ({{ item.quantity }}/{{ item.low_stock_threshold }})
|
||||
</UBadge>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Action Buttons -->
|
||||
@@ -145,4 +157,10 @@ const expiryText = computed(() => {
|
||||
if (daysUntilExpiry.value === 1) return 'Expires tomorrow'
|
||||
return `Expires in ${daysUntilExpiry.value} days`
|
||||
})
|
||||
|
||||
// Low stock detection
|
||||
const isLowStock = computed(() => {
|
||||
if (!props.item.low_stock_threshold) return false
|
||||
return Number(props.item.quantity) <= Number(props.item.low_stock_threshold)
|
||||
})
|
||||
</script>
|
||||
|
||||
@@ -60,6 +60,7 @@ const { getInventory, deleteInventoryItem, updateQuantity } = useInventory()
|
||||
const props = defineProps<{
|
||||
refresh?: boolean
|
||||
tagFilters?: string[]
|
||||
searchQuery?: string
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
@@ -89,17 +90,27 @@ const loadInventory = async () => {
|
||||
|
||||
// Computed filtered items
|
||||
const filteredItems = computed(() => {
|
||||
if (!props.tagFilters || props.tagFilters.length === 0) {
|
||||
return items.value
|
||||
let result = items.value
|
||||
|
||||
// Filter by search query (case-insensitive)
|
||||
if (props.searchQuery && props.searchQuery.trim()) {
|
||||
const query = props.searchQuery.trim().toLowerCase()
|
||||
result = result.filter(item =>
|
||||
item.name.toLowerCase().includes(query)
|
||||
)
|
||||
}
|
||||
|
||||
// Filter items that have at least one of the selected tags
|
||||
return items.value.filter(item => {
|
||||
if (!item.tags || item.tags.length === 0) return false
|
||||
|
||||
const itemTagIds = item.tags.map((t: any) => t.tag.id)
|
||||
return props.tagFilters!.some(filterId => itemTagIds.includes(filterId))
|
||||
})
|
||||
// Filter by tags
|
||||
if (props.tagFilters && props.tagFilters.length > 0) {
|
||||
result = result.filter(item => {
|
||||
if (!item.tags || item.tags.length === 0) return false
|
||||
|
||||
const itemTagIds = item.tags.map((t: any) => t.tag.id)
|
||||
return props.tagFilters!.some(filterId => itemTagIds.includes(filterId))
|
||||
})
|
||||
}
|
||||
|
||||
return result
|
||||
})
|
||||
|
||||
const handleDelete = async (id: string) => {
|
||||
|
||||
@@ -33,9 +33,36 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Tag Filters -->
|
||||
<UCard v-if="showFilters" class="mb-6">
|
||||
<TagsTagFilter v-model="selectedTagFilters" />
|
||||
<!-- Search & Filters -->
|
||||
<UCard v-if="showFilters" class="mb-6 space-y-4">
|
||||
<!-- Search Bar -->
|
||||
<div>
|
||||
<UFormGroup label="Search Items">
|
||||
<UInput
|
||||
v-model="searchQuery"
|
||||
placeholder="Search by item name..."
|
||||
icon="i-heroicons-magnifying-glass"
|
||||
size="lg"
|
||||
:ui="{ icon: { trailing: { pointer: '' } } }"
|
||||
>
|
||||
<template #trailing>
|
||||
<UButton
|
||||
v-if="searchQuery"
|
||||
color="gray"
|
||||
variant="link"
|
||||
icon="i-heroicons-x-mark"
|
||||
:padded="false"
|
||||
@click="searchQuery = ''"
|
||||
/>
|
||||
</template>
|
||||
</UInput>
|
||||
</UFormGroup>
|
||||
</div>
|
||||
|
||||
<!-- Tag Filters -->
|
||||
<div>
|
||||
<TagsTagFilter v-model="selectedTagFilters" />
|
||||
</div>
|
||||
</UCard>
|
||||
|
||||
<!-- Add Item Form (Overlay) -->
|
||||
@@ -61,6 +88,7 @@
|
||||
ref="inventoryListRef"
|
||||
:refresh="refreshKey"
|
||||
:tag-filters="selectedTagFilters"
|
||||
:search-query="searchQuery"
|
||||
@add-item="showAddForm = true"
|
||||
@edit-item="editingItem = $event"
|
||||
/>
|
||||
@@ -82,6 +110,7 @@ const refreshKey = ref(0)
|
||||
const inventoryListRef = ref()
|
||||
const prefilledData = ref<any>(null)
|
||||
const selectedTagFilters = ref<string[]>([])
|
||||
const searchQuery = ref('')
|
||||
|
||||
// Handle scan-to-add flow (Issue #25)
|
||||
onMounted(() => {
|
||||
|
||||
@@ -26,6 +26,8 @@ export interface Database {
|
||||
quantity: number
|
||||
unit_id: string
|
||||
expiry_date: string | null
|
||||
expires_at: string | null
|
||||
low_stock_threshold: number | null
|
||||
notes: string | null
|
||||
added_by: string
|
||||
created_at: string
|
||||
@@ -38,6 +40,8 @@ export interface Database {
|
||||
quantity: number
|
||||
unit_id: string
|
||||
expiry_date?: string | null
|
||||
expires_at?: string | null
|
||||
low_stock_threshold?: number | null
|
||||
notes?: string | null
|
||||
added_by: string
|
||||
created_at?: string
|
||||
@@ -50,6 +54,8 @@ export interface Database {
|
||||
quantity?: number
|
||||
unit_id?: string
|
||||
expiry_date?: string | null
|
||||
expires_at?: string | null
|
||||
low_stock_threshold?: number | null
|
||||
notes?: string | null
|
||||
added_by?: string
|
||||
created_at?: string
|
||||
|
||||
376
docs/COOLIFY_DEPLOYMENT.md
Normal file
376
docs/COOLIFY_DEPLOYMENT.md
Normal file
@@ -0,0 +1,376 @@
|
||||
# Coolify Deployment Guide
|
||||
|
||||
## Prerequisites
|
||||
|
||||
- Coolify instance running (self-hosted or cloud)
|
||||
- Gitea repository accessible to Coolify
|
||||
- Supabase project (cloud or self-hosted)
|
||||
- Domain name (optional, for production)
|
||||
|
||||
## Deployment Steps
|
||||
|
||||
### 1. Prepare Supabase
|
||||
|
||||
#### Option A: Supabase Cloud
|
||||
|
||||
1. Sign in to [supabase.com](https://supabase.com)
|
||||
2. Create new project (or use existing)
|
||||
3. Run migrations:
|
||||
- Go to SQL Editor
|
||||
- Copy/paste each file from `supabase/migrations/`
|
||||
- Run in order: 001_, 002_, 003_, etc.
|
||||
4. Get credentials:
|
||||
- Project Settings → API
|
||||
- Copy Project URL
|
||||
- Copy `anon` / `public` key
|
||||
|
||||
#### Option B: Self-Hosted Supabase
|
||||
|
||||
```bash
|
||||
cd supabase
|
||||
docker-compose up -d
|
||||
# Wait for services to start
|
||||
docker-compose ps
|
||||
```
|
||||
|
||||
Migrations run automatically from `supabase/migrations/` directory.
|
||||
|
||||
### 2. Add Resource in Coolify
|
||||
|
||||
1. Log in to Coolify
|
||||
2. Click "New Resource"
|
||||
3. Select "Docker Compose"
|
||||
4. Choose deployment source:
|
||||
- **Git Repository** (recommended)
|
||||
- Public Git Repository
|
||||
- Docker Image
|
||||
|
||||
### 3. Configure Git Repository
|
||||
|
||||
If using Git source:
|
||||
|
||||
1. **Repository URL:**
|
||||
```
|
||||
https://gitea.jeanlucmakiola.de/pantry-app/pantry.git
|
||||
```
|
||||
|
||||
2. **Branch:** `main` (or `develop` for staging)
|
||||
|
||||
3. **Docker Compose File:** `docker-compose.prod.yml`
|
||||
|
||||
4. **Build Path:** Leave empty (uses root)
|
||||
|
||||
### 4. Set Environment Variables
|
||||
|
||||
In Coolify → Environment Variables, add:
|
||||
|
||||
```bash
|
||||
# Required
|
||||
NUXT_PUBLIC_SUPABASE_URL=https://your-project.supabase.co
|
||||
NUXT_PUBLIC_SUPABASE_ANON_KEY=your-anon-key-here
|
||||
|
||||
# Optional
|
||||
NODE_ENV=production
|
||||
HOST=0.0.0.0
|
||||
PORT=3000
|
||||
```
|
||||
|
||||
**Security Note:** Never commit `.env` files with real credentials!
|
||||
|
||||
### 5. Configure Domain (Optional)
|
||||
|
||||
1. In Coolify → Domains
|
||||
2. Add your domain: `pantry.yourdomain.com`
|
||||
3. Coolify auto-provisions SSL with Let's Encrypt
|
||||
4. DNS: Point A record to Coolify server IP
|
||||
|
||||
### 6. Deploy
|
||||
|
||||
1. Click "Deploy" button
|
||||
2. Watch build logs
|
||||
3. Wait for "Deployed successfully" message
|
||||
|
||||
Expected deploy time: 2-5 minutes
|
||||
|
||||
### 7. Verify Deployment
|
||||
|
||||
#### Health Check
|
||||
|
||||
```bash
|
||||
curl https://pantry.yourdomain.com/api/health
|
||||
```
|
||||
|
||||
Expected response:
|
||||
```json
|
||||
{
|
||||
"status": "ok",
|
||||
"timestamp": "2026-02-25T00:00:00.000Z",
|
||||
"uptime": 123.456
|
||||
}
|
||||
```
|
||||
|
||||
#### PWA Check
|
||||
|
||||
1. Visit app in browser
|
||||
2. Open DevTools → Application → Manifest
|
||||
3. Verify manifest loads
|
||||
4. Check Service Worker is registered
|
||||
|
||||
#### Functionality Test
|
||||
|
||||
- [ ] Homepage loads
|
||||
- [ ] Can sign up / sign in
|
||||
- [ ] Can view inventory
|
||||
- [ ] Can add item
|
||||
- [ ] PWA install prompt appears
|
||||
- [ ] Offline mode works
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Build Fails
|
||||
|
||||
**Check build logs in Coolify:**
|
||||
|
||||
Common issues:
|
||||
- Missing dependencies → Check package.json
|
||||
- npm/node version mismatch → Use Node 20 Alpine
|
||||
- Out of memory → Increase Coolify resource limits
|
||||
|
||||
### Container Won't Start
|
||||
|
||||
**Check runtime logs in Coolify:**
|
||||
|
||||
Common issues:
|
||||
- Missing environment variables
|
||||
- Port conflict (use 3000)
|
||||
- Supabase connection timeout
|
||||
|
||||
### Supabase Connection Error
|
||||
|
||||
1. Verify Supabase URL is correct (no trailing slash)
|
||||
2. Check anon key is valid
|
||||
3. Test Supabase API directly:
|
||||
```bash
|
||||
curl https://your-project.supabase.co/rest/v1/
|
||||
```
|
||||
4. Check Supabase RLS policies allow access
|
||||
|
||||
### SSL Certificate Issues
|
||||
|
||||
Coolify should auto-provision Let's Encrypt cert:
|
||||
- Ensure domain points to correct IP
|
||||
- Check DNS propagation (can take 48h)
|
||||
- Verify port 80/443 open on firewall
|
||||
|
||||
### App Loads but No Data
|
||||
|
||||
1. Check browser console for errors
|
||||
2. Verify Supabase connection in Network tab
|
||||
3. Check RLS policies in Supabase
|
||||
4. Verify migrations ran successfully
|
||||
|
||||
## Continuous Deployment
|
||||
|
||||
### Auto-Deploy on Push
|
||||
|
||||
1. In Coolify → Settings → Webhooks
|
||||
2. Copy webhook URL
|
||||
3. In Gitea → Repo → Settings → Webhooks
|
||||
4. Add webhook:
|
||||
- URL: [Coolify webhook URL]
|
||||
- Events: Push events
|
||||
- Branch: main (or develop)
|
||||
|
||||
Now every git push triggers auto-deployment!
|
||||
|
||||
### Manual Deploy
|
||||
|
||||
In Coolify interface:
|
||||
1. Click "Deploy Latest" button
|
||||
2. Or use Coolify API:
|
||||
```bash
|
||||
curl -X POST https://coolify.example.com/api/deploy/[resource-id] \
|
||||
-H "Authorization: Bearer [your-token]"
|
||||
```
|
||||
|
||||
## Monitoring
|
||||
|
||||
### View Logs
|
||||
|
||||
Coolify Dashboard → Logs tab
|
||||
|
||||
Real-time logs:
|
||||
```bash
|
||||
# If SSH access to Coolify host
|
||||
docker logs -f [container-name]
|
||||
```
|
||||
|
||||
### Resource Usage
|
||||
|
||||
Coolify shows:
|
||||
- CPU usage
|
||||
- Memory usage
|
||||
- Network traffic
|
||||
- Storage
|
||||
|
||||
### Uptime Monitoring
|
||||
|
||||
Recommended external services:
|
||||
- UptimeRobot (free tier)
|
||||
- BetterStack
|
||||
- Freshping
|
||||
|
||||
Monitor: `https://pantry.yourdomain.com/api/health`
|
||||
|
||||
## Rollback
|
||||
|
||||
### To Previous Version
|
||||
|
||||
1. In Coolify → Deployments
|
||||
2. Click on previous successful deployment
|
||||
3. Click "Redeploy"
|
||||
|
||||
### Using Git Tags
|
||||
|
||||
```bash
|
||||
# Tag current release
|
||||
git tag -a v0.1.0 -m "MVP Release"
|
||||
git push origin v0.1.0
|
||||
|
||||
# Rollback by changing branch in Coolify
|
||||
# Or deploy specific tag
|
||||
```
|
||||
|
||||
## Performance Optimization
|
||||
|
||||
### Resource Limits
|
||||
|
||||
In docker-compose.prod.yml:
|
||||
```yaml
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 512M
|
||||
cpus: '1.0'
|
||||
```
|
||||
|
||||
Adjust based on traffic.
|
||||
|
||||
### CDN (Recommended)
|
||||
|
||||
1. Add domain to Cloudflare
|
||||
2. Set DNS proxy (orange cloud)
|
||||
3. Enable caching rules
|
||||
4. Set SSL to "Full (strict)"
|
||||
|
||||
**Result:** ~50% faster load times globally
|
||||
|
||||
### Database Connection Pooling
|
||||
|
||||
If self-hosting Supabase:
|
||||
- Use PgBouncer (included in Supabase)
|
||||
- Set max connections: 20-50
|
||||
|
||||
## Security Checklist
|
||||
|
||||
Before going live:
|
||||
|
||||
- [ ] HTTPS enabled (automatic with Coolify)
|
||||
- [ ] Environment variables set (not in repo)
|
||||
- [ ] Supabase RLS policies enabled
|
||||
- [ ] Strong database passwords
|
||||
- [ ] Firewall configured (only 80/443 open)
|
||||
- [ ] Supabase auth configured
|
||||
- [ ] Regular backups enabled
|
||||
- [ ] Monitoring alerts set up
|
||||
|
||||
## Backup Strategy
|
||||
|
||||
### Database Backups
|
||||
|
||||
**Supabase Cloud:** Automatic daily backups
|
||||
|
||||
**Self-hosted:**
|
||||
```bash
|
||||
# Manual backup
|
||||
docker exec supabase-db pg_dump -U postgres > backup.sql
|
||||
|
||||
# Automated (cron)
|
||||
0 2 * * * /path/to/backup-script.sh
|
||||
```
|
||||
|
||||
### Volume Backups
|
||||
|
||||
Coolify persistent volumes:
|
||||
```bash
|
||||
docker run --rm \
|
||||
-v coolify_pantry_data:/data \
|
||||
-v $(pwd):/backup \
|
||||
ubuntu tar czf /backup/pantry-backup.tar.gz /data
|
||||
```
|
||||
|
||||
## Staging Environment
|
||||
|
||||
Recommended setup:
|
||||
|
||||
**Production:**
|
||||
- Branch: `main`
|
||||
- Domain: `pantry.yourdomain.com`
|
||||
- Supabase: Production project
|
||||
|
||||
**Staging:**
|
||||
- Branch: `develop`
|
||||
- Domain: `staging.pantry.yourdomain.com`
|
||||
- Supabase: Separate test project
|
||||
|
||||
In Coolify, create two resources pointing to different branches.
|
||||
|
||||
## Cost Estimate
|
||||
|
||||
**Coolify (self-hosted):**
|
||||
- VPS: $5-10/month (Hetzner, Digital Ocean)
|
||||
- Domain: $10-15/year
|
||||
- **Total:** ~$8/month
|
||||
|
||||
**Supabase Cloud:**
|
||||
- Free tier: 500MB database, 1GB file storage
|
||||
- Pro tier: $25/month (more resources)
|
||||
|
||||
**Total Cost:** $8-33/month for full stack
|
||||
|
||||
## Support
|
||||
|
||||
**Coolify:**
|
||||
- Docs: https://coolify.io/docs
|
||||
- Discord: https://discord.gg/coolify
|
||||
|
||||
**Pantry:**
|
||||
- Issues: https://gitea.jeanlucmakiola.de/pantry-app/pantry/issues
|
||||
- Discussions: TBD
|
||||
|
||||
## Post-Deployment Checklist
|
||||
|
||||
After first deployment:
|
||||
|
||||
- [ ] Health check passes
|
||||
- [ ] Can access homepage
|
||||
- [ ] Can sign up / sign in
|
||||
- [ ] Can add inventory item
|
||||
- [ ] PWA installs correctly
|
||||
- [ ] Offline mode works
|
||||
- [ ] SSL certificate valid
|
||||
- [ ] Monitoring alerts configured
|
||||
- [ ] Backup strategy in place
|
||||
- [ ] Team notified of URL
|
||||
|
||||
## Next Steps
|
||||
|
||||
1. Run E2E tests (see E2E_TESTING.md)
|
||||
2. Monitor for 24-48 hours
|
||||
3. Announce to users
|
||||
4. Set up analytics (optional)
|
||||
5. Plan first iteration
|
||||
|
||||
---
|
||||
|
||||
**Congratulations! Your app is live! 🎉**
|
||||
210
docs/DEPLOYMENT_CHECKLIST.md
Normal file
210
docs/DEPLOYMENT_CHECKLIST.md
Normal file
@@ -0,0 +1,210 @@
|
||||
# Deployment Checklist
|
||||
|
||||
Use this checklist to ensure a smooth deployment to production or staging.
|
||||
|
||||
## Pre-Deployment
|
||||
|
||||
### Code Quality
|
||||
- [ ] All tests passing (E2E_TESTING.md)
|
||||
- [ ] No critical bugs open
|
||||
- [ ] Code reviewed and approved
|
||||
- [ ] CHANGELOG.md updated
|
||||
- [ ] Version tagged in git
|
||||
|
||||
### Database
|
||||
- [ ] Migrations tested locally
|
||||
- [ ] Migrations run on staging
|
||||
- [ ] Seed data prepared (if needed)
|
||||
- [ ] Backup created
|
||||
- [ ] RLS policies verified
|
||||
|
||||
### Configuration
|
||||
- [ ] Environment variables documented
|
||||
- [ ] .env.production.example updated
|
||||
- [ ] Secrets not in repository
|
||||
- [ ] Docker files tested locally
|
||||
- [ ] Health check endpoint working
|
||||
|
||||
### Documentation
|
||||
- [ ] DEPLOYMENT.md reviewed
|
||||
- [ ] README.md up to date
|
||||
- [ ] API changes documented
|
||||
- [ ] Known issues documented
|
||||
|
||||
## Deployment
|
||||
|
||||
### Coolify Setup
|
||||
- [ ] Resource created in Coolify
|
||||
- [ ] Git repository connected
|
||||
- [ ] Branch configured (main/develop)
|
||||
- [ ] docker-compose.prod.yml path set
|
||||
- [ ] Environment variables added
|
||||
- [ ] Domain configured (optional)
|
||||
- [ ] SSL enabled
|
||||
|
||||
### Supabase Setup
|
||||
- [ ] Project created
|
||||
- [ ] Migrations run
|
||||
- [ ] RLS policies enabled
|
||||
- [ ] Auth providers configured
|
||||
- [ ] Storage buckets created
|
||||
- [ ] API keys copied
|
||||
|
||||
### Build & Deploy
|
||||
- [ ] Triggered deployment
|
||||
- [ ] Build logs checked (no errors)
|
||||
- [ ] Container started successfully
|
||||
- [ ] Health check passes
|
||||
|
||||
## Post-Deployment Verification
|
||||
|
||||
### Health Checks
|
||||
- [ ] `/api/health` returns 200 OK
|
||||
- [ ] Homepage loads
|
||||
- [ ] Auth works (sign up/in)
|
||||
- [ ] Database connection works
|
||||
|
||||
### PWA
|
||||
- [ ] Manifest loads correctly
|
||||
- [ ] Service worker registers
|
||||
- [ ] Install prompt appears
|
||||
- [ ] Offline mode works
|
||||
- [ ] Icons display correctly
|
||||
|
||||
### Functionality
|
||||
- [ ] Can create account
|
||||
- [ ] Can sign in
|
||||
- [ ] Can add inventory item
|
||||
- [ ] Can edit item
|
||||
- [ ] Can delete item
|
||||
- [ ] Can add tags
|
||||
- [ ] Can scan barcode (if implemented)
|
||||
|
||||
### Performance
|
||||
- [ ] Page load < 3s
|
||||
- [ ] Lighthouse score > 90 (PWA)
|
||||
- [ ] No console errors
|
||||
- [ ] No network errors
|
||||
|
||||
### Cross-Browser
|
||||
- [ ] Chrome (desktop)
|
||||
- [ ] Firefox (desktop)
|
||||
- [ ] Safari (desktop)
|
||||
- [ ] Chrome (mobile)
|
||||
- [ ] Safari (iOS)
|
||||
|
||||
## Monitoring
|
||||
|
||||
### Setup
|
||||
- [ ] Uptime monitoring configured
|
||||
- [ ] Error tracking enabled (optional)
|
||||
- [ ] Log aggregation set up
|
||||
- [ ] Alerts configured
|
||||
- [ ] Metrics dashboard created (optional)
|
||||
|
||||
### Checks
|
||||
- [ ] CPU usage normal
|
||||
- [ ] Memory usage normal
|
||||
- [ ] Disk space sufficient
|
||||
- [ ] No error spikes
|
||||
|
||||
## Security
|
||||
|
||||
### Verification
|
||||
- [ ] HTTPS enabled
|
||||
- [ ] SSL certificate valid
|
||||
- [ ] No credentials exposed
|
||||
- [ ] Firewall configured
|
||||
- [ ] Supabase RLS enabled
|
||||
- [ ] Strong admin passwords
|
||||
|
||||
### Compliance
|
||||
- [ ] Privacy policy added (if required)
|
||||
- [ ] Terms of service added (if required)
|
||||
- [ ] Cookie notice (if applicable)
|
||||
- [ ] GDPR compliance (if EU users)
|
||||
|
||||
## Communication
|
||||
|
||||
### Team
|
||||
- [ ] Deployment announced
|
||||
- [ ] Access details shared
|
||||
- [ ] Rollback plan communicated
|
||||
- [ ] Support plan established
|
||||
|
||||
### Users
|
||||
- [ ] Announcement prepared
|
||||
- [ ] Migration guide ready (if needed)
|
||||
- [ ] Support channels available
|
||||
- [ ] Feedback mechanism in place
|
||||
|
||||
## Backup & Recovery
|
||||
|
||||
### Backups
|
||||
- [ ] Database backup verified
|
||||
- [ ] Volume backup taken
|
||||
- [ ] Backup restore tested
|
||||
- [ ] Backup schedule configured
|
||||
|
||||
### Disaster Recovery
|
||||
- [ ] Rollback plan documented
|
||||
- [ ] Emergency contacts listed
|
||||
- [ ] Recovery time objective (RTO) defined
|
||||
- [ ] Recovery point objective (RPO) defined
|
||||
|
||||
## Post-Launch (24-48h)
|
||||
|
||||
### Monitoring
|
||||
- [ ] Check logs for errors
|
||||
- [ ] Review uptime metrics
|
||||
- [ ] Analyze user behavior
|
||||
- [ ] Check resource usage
|
||||
|
||||
### Optimization
|
||||
- [ ] Identify slow queries
|
||||
- [ ] Optimize heavy assets
|
||||
- [ ] Review caching strategy
|
||||
- [ ] Tune resource limits
|
||||
|
||||
### Feedback
|
||||
- [ ] Collect user feedback
|
||||
- [ ] Log issues found
|
||||
- [ ] Prioritize fixes
|
||||
- [ ] Plan next iteration
|
||||
|
||||
## Sign-Off
|
||||
|
||||
**Deployed by:** ___________________
|
||||
**Date:** ___________________
|
||||
**Environment:** Production / Staging
|
||||
**Version:** ___________________
|
||||
**Status:** ✅ Success / ⚠️ Issues / ❌ Failed
|
||||
|
||||
**Notes:**
|
||||
_____________________________________________
|
||||
_____________________________________________
|
||||
_____________________________________________
|
||||
|
||||
**Next Review:** ___________________
|
||||
|
||||
---
|
||||
|
||||
## Rollback Criteria
|
||||
|
||||
Trigger rollback if:
|
||||
- [ ] Critical bug discovered
|
||||
- [ ] Data loss occurring
|
||||
- [ ] Service unavailable > 15 min
|
||||
- [ ] Security vulnerability found
|
||||
- [ ] Performance degraded > 50%
|
||||
|
||||
**Rollback Procedure:**
|
||||
1. In Coolify → Previous deployment → Redeploy
|
||||
2. Or: `git revert` and redeploy
|
||||
3. Notify team and users
|
||||
4. Investigate root cause
|
||||
5. Fix and redeploy
|
||||
|
||||
---
|
||||
|
||||
**Remember:** It's better to delay than to deploy broken code. Take your time with this checklist!
|
||||
26
supabase/migrations/006_add_expiry_lowstock.sql
Normal file
26
supabase/migrations/006_add_expiry_lowstock.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
-- Migration: Add expiry date and low-stock threshold tracking
|
||||
-- Issues: #63 (expiry tracking), #67 (low-stock threshold)
|
||||
-- Created: 2026-02-25
|
||||
|
||||
-- Note: expiry_date already exists as DATE type. Adding expires_at as TIMESTAMPTZ for consistency
|
||||
-- and low_stock_threshold for threshold tracking.
|
||||
|
||||
-- Add expires_at column for precise expiry date/time tracking (complementing existing expiry_date)
|
||||
-- We'll keep both: expiry_date (DATE) for simple day-based expiry, expires_at (TIMESTAMPTZ) for precise tracking
|
||||
ALTER TABLE inventory_items
|
||||
ADD COLUMN expires_at TIMESTAMP WITH TIME ZONE DEFAULT NULL;
|
||||
|
||||
-- Add low_stock_threshold column for low-stock alerts
|
||||
ALTER TABLE inventory_items
|
||||
ADD COLUMN low_stock_threshold NUMERIC(10,2) DEFAULT NULL;
|
||||
|
||||
-- Add comments for documentation
|
||||
COMMENT ON COLUMN inventory_items.expires_at IS 'Optional precise expiration timestamp. Complements expiry_date for items needing time-specific expiry.';
|
||||
COMMENT ON COLUMN inventory_items.low_stock_threshold IS 'Minimum quantity threshold. Item is considered low-stock when quantity <= threshold. Null means no threshold set.';
|
||||
|
||||
-- Create index for efficient expiry queries (finding items expiring soon)
|
||||
CREATE INDEX idx_inventory_items_expires_at ON inventory_items(expires_at) WHERE expires_at IS NOT NULL;
|
||||
|
||||
-- Create index for efficient low-stock queries
|
||||
CREATE INDEX idx_inventory_items_low_stock ON inventory_items(quantity, low_stock_threshold)
|
||||
WHERE low_stock_threshold IS NOT NULL;
|
||||
Reference in New Issue
Block a user