Kullanıcı girişi, profil, IBAN, PostgreSQL destekli ev harcama takip uygulaması.
DATABASE_URL=postgresql://user:pass@host:5432/dbname
JWT_SECRET=cok-gizli-bir-key
NODE_ENV=production
PORT=3001
- GitHub push → render.com → New Web Service
- Build:
npm install && npm run build - Start:
npm start - Env vars ekle + New PostgreSQL oluştur
heroku create evpay-app
heroku addons:create heroku-postgresql:mini
heroku config:set NODE_ENV=production JWT_SECRET=xxx
git push heroku maincreatedb evpay
DATABASE_URL=postgresql://localhost/evpay JWT_SECRET=dev node server/index.js
# Başka terminalde:
cd client && npm start