Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niko-la-petrovic/pisio.vectorsimilarityservice
Vector Similarity Service
https://github.com/niko-la-petrovic/pisio.vectorsimilarityservice
Last synced: 22 days ago
JSON representation
Vector Similarity Service
- Host: GitHub
- URL: https://github.com/niko-la-petrovic/pisio.vectorsimilarityservice
- Owner: niko-la-petrovic
- Created: 2023-09-29T19:01:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-10T12:13:09.000Z (about 1 year ago)
- Last Synced: 2024-04-28T05:37:46.248Z (8 months ago)
- Language: C#
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PISIO.VectorSimilarityService
## Scripts
Docker build
```bash
docker build -t pisio-vec-sim-service-api -f ./src/PISIO.VectorSimilarityService.Api/Dockerfile .
```### Migrations
#### Tooling
Install dotnet ef tooling
```bash
dotnet tool install --global dotnet-ef
```Create migration
```bash
dotnet ef migrations add Initial -s ./src/PISIO.VectorSimilarityService.Api/ -p ./src/PISIO.VectorSimilarityService.Data/ -o Migrations
```Remove migration
```bash
dotnet ef migrations remove -s ./src/PISIO.VectorSimilarityService.Api/ -p ./src/PISIO.VectorSimilarityService.Data/
```Update database
```bash
dotnet ef database update -s ./src/PISIO.VectorSimilarityService.Api/ -p ./src/PISIO.VectorSimilarityService.Data/
```