/
fegerV
/
Stogram
Обзор
Документация
Войти
/
fegerV
/
Stogram
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
server/src/scripts/generateVapidKeys.ts
10 строк
435 B
engine-labs-app[bot]
feat(messaging): add reactions, scheduled messages, email verification, media enhancements, and push notifications
31 окт 2025, 18:54
31 окт 2025, 18:54
8509248
Код
Авторство
О чём код?
import webpush from 'web-push'; const vapidKeys = webpush.generateVAPIDKeys(); console.log('\n🔑 VAPID Keys Generated:\n'); console.log('Add these to your .env file:\n'); console.log(`VAPID_PUBLIC_KEY=${vapidKeys.publicKey}`); console.log(`VAPID_PRIVATE_KEY=${vapidKeys.privateKey}`); console.log(`VAPID_EMAIL=mailto:admin@stogram.com\n`); console.log('⚠️ Keep these keys secret and never commit them to version control!\n');