Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
a8807d9
r moving dtos file to corresponding file and deleting scripts
Raghart Feb 6, 2026
ba85010
r deleting scripts folder
Raghart Feb 6, 2026
c302ee7
r creating database using Go
Raghart Feb 7, 2026
f2ab2ff
r creating albums schema
Raghart Feb 7, 2026
b1d3010
r creating genres schema
Raghart Feb 7, 2026
217b7f7
r creating songs schema
Raghart Feb 7, 2026
128542e
r creating song_genres schema
Raghart Feb 7, 2026
462b25e
r creating song_artists schema
Raghart Feb 7, 2026
861a12b
r adding song_details schema
Raghart Feb 7, 2026
62815b8
r adding artists and starting to configure cli architecture
Raghart Feb 7, 2026
710836c
r refactoring cli code to be more flexible
Raghart Feb 7, 2026
8c51675
r cmd to add genres to the database
Raghart Feb 7, 2026
7826f29
r adding cmd to add albums to the local database
Raghart Feb 7, 2026
34056c2
r adding missing column to songs table
Raghart Feb 7, 2026
1287166
r adding songs to the local database
Raghart Feb 7, 2026
65d43e0
r adding cmd to add the song_artists relationship
Raghart Feb 8, 2026
a6e1829
r adding cmd to add the song genres rp to the local DB
Raghart Feb 8, 2026
84ea836
r adding song details to the database
Raghart Feb 9, 2026
87211f7
r adding vectors to the song_details table
Raghart Feb 9, 2026
ffaf397
r changing variables names to work with the local database
Raghart Feb 9, 2026
684ef18
r testing the Query Cosine recommendation of PostgreSQL
Raghart Feb 10, 2026
548cc9d
r refactoring to make back use new cosine similarity
Raghart Feb 11, 2026
b9b0a14
r added limit to control how many songs to recieve
Raghart Feb 11, 2026
32594a0
r loading function in local DB to search for songs
Raghart Feb 11, 2026
748f27a
r refactoring DB local vectors to be normalized
Raghart Feb 11, 2026
f52785a
r refactoring front userVector to adapt to the new vectors
Raghart Feb 12, 2026
a1ea382
r cleaning fronts debugging console.logs
Raghart Feb 12, 2026
9de0111
r refactoring vector Function to work without a genre
Raghart Feb 12, 2026
8b0bfa5
r tweaking front userVector values to improve user experience & fixin…
Raghart Feb 12, 2026
2bc2d6b
r hiding secret value
Raghart Feb 16, 2026
1c942e1
r fixing another conflict in git
Raghart Feb 16, 2026
623e8cd
r fixing some lint problems and refactoring tests
Raghart Feb 15, 2026
a040c84
r refactoring tests & front to improve logic
Raghart Feb 15, 2026
3d0603a
r fixing git problems
Raghart Feb 16, 2026
0614aaa
r fixing conflict
Raghart Feb 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# compiled output
node_modules/

back/database/csv_data/

# Logs
logs
*.log
Expand Down
12 changes: 12 additions & 0 deletions back/database/dbConfig/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package databaseConfig

const minLoudness = -60.00
const maxLoudness = 3.642
const minTempo = 0.0
const maxTempo = 238.895
const minTimeSig = 0
const maxTimeSig = 5
const minTrackKey = 0
const maxTrackKey = 11
const minDuration = 0.2
const maxDuration = 63.31
Loading
Loading