SKRID Platform is a web-based interface for querying and exploring musical patterns stored in a graph database. This repository contains only the client side (vueJS) of the platform.
The backend (query compilation, result processing, etc.) is maintained in a separate repository: ➡️ SKRID Backend Repository
The frontend (connecting the client and the backend) is maintained in a separate repository: ➡️ SKRID Frontend Repository
- Interface for melodic and rhythmic search via interactive piano interface input
- Flexible contour search
- Display of musical score collection
- Communication with a Python backend via REST endpoints (through the frontend server)
.
├── public/ # Images and sounds
│
└── src/
├── assets/
├── components/
│ ├── common/ # Main components (keyboard, stave, ...)
│ └── layout/ # Header, footer
├── constants/
├── lib/
├── router/
├── services/
├── stores/
├── types/ # Type definitions
├── views/ # Definition of the pages
│
├── App.vue
├── shims-vue.d.ts
└── main.ts
The following instructions are to run the development server only.
To deploy in production, see the frontend's README.
git clone https://gitlab.inria.fr/skrid/client.git
cd client/npm installCopy the example .env file and adjust the values:
cp .env.example .envnpm run devThen visit http://localhost:5173 in your browser.
This client communicates with the frontend API calls. The frontend must be installed and running separately.
Note that the frontend itself depends on the backend.
By default, the client expects the frontend to be available at http://localhost:3000.
- If you modify
index.js, restart the server to apply changes.
For database setup and ingestion scripts, see the backend project.
- cors package was install for develloppement, don't need in production. need cors to allow vue dev server to connect to frontend server
VSCode + Volar (and disable Vetur).
TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need Volar to make the TypeScript language service aware of .vue types.
See Vite Configuration Reference.
npm run devnpm run buildLint with ESLint
npm run lintSee TODO.md for planned features and known issues.
This project is distributed under the MIT License.
See LICENSE for details.
(Copyright © 2023–2025 IRISA)