https://github.com/azuobs/simple-search
Simple search algorithm with test suite
https://github.com/azuobs/simple-search
Last synced: about 1 year ago
JSON representation
Simple search algorithm with test suite
- Host: GitHub
- URL: https://github.com/azuobs/simple-search
- Owner: AzuObs
- Created: 2018-08-16T14:28:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-16T14:29:24.000Z (over 7 years ago)
- Last Synced: 2025-02-10T08:30:28.762Z (about 1 year ago)
- Language: Scala
- Size: 4.64 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Run the dev app
```bash
sbt "run ."
```
## Test the app
```bash
sbt test
```
## Run the compiled app
```bash
java -jar dist/SimpleSearch.jar .
```
## Assemble the app
```bash
sbt assembly
cp target/scala-2.12/SimpleSearch.jar dist/SimpleSearch.jar
```