70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
import 'dotenv/config';
|
||
import prisma from './lib/prisma';
|
||
|
||
async function main() {
|
||
await prisma.activity.deleteMany({});
|
||
|
||
await prisma.activity.createMany({
|
||
data: [
|
||
{
|
||
lang: 'tr',
|
||
title: 'Kitesurf',
|
||
description: 'Akyaka\'nın muhteşem rüzgarında profesyonel eğitmenlerle kitesurf deneyimi yaşayın.',
|
||
price: 'Fiyat bilgisi için ulaşın',
|
||
image: 'https://images.unsplash.com/photo-1526367790999-0150786686a2?q=80&w=2940&auto=format&fit=crop',
|
||
badge: 'Popüler',
|
||
order: 1
|
||
},
|
||
{
|
||
lang: 'tr',
|
||
title: 'Yoga Wellness',
|
||
description: 'Nehir kenarında güne taze bir başlangıç veya gün batımında ruhunuzu dinlendiren yoga seansları.',
|
||
price: 'Fiyat bilgisi için ulaşın',
|
||
image: 'https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2940&auto=format&fit=crop',
|
||
badge: 'Rahatlatıcı',
|
||
order: 2
|
||
},
|
||
{
|
||
lang: 'tr',
|
||
title: 'Sunset DJ Party',
|
||
description: 'Gün batımını Ege\'nin muhteşem manzarası ve harika müzikler eşliğinde kutlayın.',
|
||
price: 'Ücretsiz Katılım',
|
||
image: 'https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=2874&auto=format&fit=crop',
|
||
badge: 'Eğlence',
|
||
order: 3
|
||
},
|
||
{
|
||
lang: 'en',
|
||
title: 'Kitesurf',
|
||
description: 'Experience kitesurfing with professional instructors in Akyaka\'s amazing wind.',
|
||
price: 'Contact for price',
|
||
image: 'https://images.unsplash.com/photo-1526367790999-0150786686a2?q=80&w=2940&auto=format&fit=crop',
|
||
badge: 'Popular',
|
||
order: 1
|
||
},
|
||
{
|
||
lang: 'en',
|
||
title: 'Yoga Wellness',
|
||
description: 'A fresh start to the day by the river or relaxing yoga sessions at sunset.',
|
||
price: 'Contact for price',
|
||
image: 'https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2940&auto=format&fit=crop',
|
||
badge: 'Relaxing',
|
||
order: 2
|
||
},
|
||
{
|
||
lang: 'en',
|
||
title: 'Sunset DJ Party',
|
||
description: 'Celebrate the sunset with the amazing view of the Aegean and great music.',
|
||
price: 'Free Entry',
|
||
image: 'https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=2874&auto=format&fit=crop',
|
||
badge: 'Entertainment',
|
||
order: 3
|
||
}
|
||
]
|
||
});
|
||
|
||
console.log('Activities updated successfully');
|
||
}
|
||
|
||
main().catch(console.error).finally(() => prisma.$disconnect());
|