This commit is contained in:
valere
2024-08-18 18:47:15 +02:00
commit 24e7bb58fa
25 changed files with 8926 additions and 0 deletions

70
server/api/artists.ts Normal file
View File

@@ -0,0 +1,70 @@
export default eventHandler(() => {
return [
{
id: 0,
name: "L'efondras",
link: "https://leffondras.bandcamp.com/music",
style: [0, 1, 2]
},
{
id: 1,
name: "The kundalini genie",
link: "https://the-kundalini-genie.bandcamp.com",
style: [0, 1, 2]
},
{
id: 2,
name: "Fontaines D.C.",
link: "https://fontainesdc.bandcamp.com",
style: [0, 1, 2]
},
{
id: 3,
name: "Fontanarosa",
link: "https://fontanarosa.bandcamp.com",
style: [0, 1, 2]
},
{
id: 4,
name: "Johnny mafia",
link: "https://johnnymafia.bandcamp.com",
style: [0, 1, 2]
},
{
id: 5,
name: "New candys",
link: "https://newcandys.bandcamp.com",
style: [0, 1, 2]
},
{
id: 6,
name: "Magic shoppe",
link: "https://magicshoppe.bandcamp.com",
style: [0, 1, 2]
},
{
id: 7,
name: "Les jaguars",
link: "https://radiomartiko.bandcamp.com/album/surf-qu-b-cois",
style: [0, 1, 2]
},
{
id: 8,
name: "TRAAMS",
link: "https://traams.bandcamp.com",
style: [0, 1, 2]
},
{
id: 9,
name: "Blue orchid",
link: "https://blue-orchid.bandcamp.com",
style: [0, 1, 2]
},
{
id: 10,
name: "I love UFO",
link: "https://bruitblanc.bandcamp.com",
style: [0, 1, 2]
}
]
})

View File

@@ -0,0 +1,12 @@
export default eventHandler(() => {
return [
{
id: 'ES00',
name: 'Zero'
},
{
id: 'ES01',
name: 'Zero B-Side'
}
]
})

16
server/api/styles.ts Normal file
View File

@@ -0,0 +1,16 @@
export default eventHandler(() => {
return [
{
"id": 0,
"name": "post-rock"
},
{
"id": 1,
"name": "math-rock"
},
{
"id": 2,
"name": "indie-pop"
}
]
})

114
server/api/tracks.ts Normal file
View File

@@ -0,0 +1,114 @@
export default eventHandler(() => {
return [
{
id: 0,
number: 1,
compilation: 'ES00',
title: 'The grinding wheel',
artist: 0,
duration: 392,
bpm: 0,
link: 'https://arakirecords.bandcamp.com/track/the-grinding-wheel'
},
{
id: 1,
number: 2,
compilation: 'ES00',
title: 'Bleach',
artist: 1,
duration: 500,
bpm: 0,
link: 'https://the-kundalini-genie.bandcamp.com/track/bleach-2'
},
{
id: 2,
number: 3,
compilation: 'ES00',
title: 'Televised mind',
artist: 2,
duration: 0,
bpm: 0,
link: 'https://fontainesdc.bandcamp.com/track/televised-mind'
},
{
id: 3,
number: 4,
compilation: 'ES00',
title: 'In it',
artist: 3,
duration: 0,
bpm: 0,
link: 'https://howlinbananarecords.bandcamp.com/track/in-it'
},
{
id: 4,
number: 5,
compilation: 'ES00',
title: 'Bad michel',
artist: 4,
duration: 0,
bpm: 0,
link: 'https://johnnymafia.bandcamp.com/track/bad-michel-3'
},
{
id: 5,
number: 6,
compilation: 'ES00',
title: 'Overall',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://newcandys.bandcamp.com/track/overall'
},
{
id: 6,
number: 6,
compilation: 'ES00',
title: 'Guitar jet',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://radiomartiko.bandcamp.com/track/guitare-jet'
},
{
id: 7,
number: 6,
compilation: 'ES00',
title: 'Blowup',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://magicshoppe.bandcamp.com/track/blowup'
},
{
id: 8,
number: 6,
compilation: 'ES00',
title: 'Intercontinental radio waves',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://traams.bandcamp.com/track/intercontinental-radio-waves'
},
{
id: 9,
number: 6,
compilation: 'ES00',
title: 'Here comes the sun',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://blue-orchid.bandcamp.com/track/here-come-the-sun'
},
{
id: 10,
number: 11,
compilation: 'ES00',
title: 'Like in the movies',
artist: 5,
duration: 0,
bpm: 0,
link: 'https://bruitblanc.bandcamp.com/track/like-in-the-movies-2'
},
]
})

3
server/tsconfig.json Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "../.nuxt/tsconfig.server.json"
}