feat(ntfy): add initializer, Kamal accessory container, seed defaults

This commit is contained in:
Min Zeya Phyo
2026-07-28 02:31:48 +08:00
parent 9fa6c37297
commit 20927eea5f
3 changed files with 26 additions and 23 deletions

View File

@@ -11,7 +11,11 @@ unless AdminUser.exists?(email: "admin@example.com")
admin = AdminUser.create!(
email: "admin@example.com",
password: "password123",
name: "Admin User"
name: "Admin User",
ntfy_enabled: false,
ntfy_topic: nil,
ntfy_token: nil,
ntfy_server_url: nil
)
puts "✅ Created Admin User"
puts " Email: admin@example.com"