mirror of
https://github.com/cgzirim/seek-tune.git
synced 2025-12-17 17:04:22 +00:00
Update README.md
This commit is contained in:
parent
ffb0dca107
commit
feb6417daa
1 changed files with 11 additions and 8 deletions
19
README.md
19
README.md
|
|
@ -18,19 +18,26 @@ Clone the repository:
|
|||
```
|
||||
git clone https://github.com/cgzirim/song-recognition.git
|
||||
```
|
||||
Install dependencies
|
||||
Install dependencies for the backend
|
||||
```
|
||||
cd song-recognition
|
||||
go get ./...
|
||||
```
|
||||
Install dependencies for the client
|
||||
```
|
||||
cd song-recognition/client
|
||||
npm install
|
||||
```
|
||||
|
||||
## Usage
|
||||
Install and Start the Client App
|
||||
Start the Client App
|
||||
```
|
||||
cd client
|
||||
npm install
|
||||
npm start
|
||||
```
|
||||
Serve the Backend App
|
||||
```
|
||||
go run main.go serve [-proto <http|https>] [-port <port number>]
|
||||
```
|
||||
Download a Song
|
||||
```
|
||||
go run main.go download <https://open.spotify.com/.../...>
|
||||
|
|
@ -39,10 +46,6 @@ Find matches for a song/recording
|
|||
```
|
||||
go run main.go find <path-to-wav-file>
|
||||
```
|
||||
Serve the Application
|
||||
```
|
||||
go run main.go serve [-proto <http|https>] [-port <port number>]
|
||||
```
|
||||
|
||||
### Example
|
||||
Download a song
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue