-
Notifications
You must be signed in to change notification settings - Fork 0
Add CI Pipeline #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| name: DevShelf CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ "main" ] | ||
| pull_request: | ||
| branches: [ "main" ] | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v3 | ||
|
|
||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'temurin' | ||
| cache: maven | ||
|
|
||
| - name: Build with Maven | ||
| run: mvn -B package --file pom.xml | ||
|
|
||
| - name: Run Tests | ||
| run: mvn test | ||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| # Tutorial: DevShelf | ||
|
|
||
| DevShelf is a **digital library search engine** that helps users *discover and read programming books*. | ||
| It intelligently **searches for books** using a pre-built index, provides "Did you mean?" suggestions, and offers | ||
| *personalized recommendations* based on book details and user popularity. The system also tracks user clicks | ||
| to continuously improve its search results and recommendations, presenting information through both command-line | ||
| and graphical interfaces. | ||
|
|
||
|
|
||
| ## Visual Overview | ||
|
|
||
| ```mermaid | ||
| flowchart TD | ||
| A0["Book (Domain Model) | ||
| "] | ||
| A1["Application Orchestration | ||
| "] | ||
| A2["User Interface (UI) Presentation | ||
| "] | ||
| A3["Offline Search Indexing | ||
| "] | ||
| A4["Core Search Engine | ||
| "] | ||
| A5["User Behavior Analytics | ||
| "] | ||
| A6["Intelligent Search Enhancements | ||
| "] | ||
| A7["Text Preprocessing | ||
| "] | ||
| A1 -- "Loads" --> A0 | ||
| A1 -- "Loads Index Data for" --> A3 | ||
| A1 -- "Sets up" --> A2 | ||
| A1 -- "Initializes" --> A4 | ||
| A1 -- "Initializes" --> A5 | ||
| A1 -- "Initializes" --> A6 | ||
| A1 -- "Prepares tools for" --> A7 | ||
| A3 -- "Indexes" --> A0 | ||
| A3 -- "Uses" --> A7 | ||
| A3 -- "Provides Index Data to" --> A4 | ||
| A4 -- "Processes Queries with" --> A7 | ||
| A4 -- "Provides Initial Results to" --> A6 | ||
| A5 -- "Logs Clicks on" --> A0 | ||
| A5 -- "Provides Popularity to" --> A6 | ||
| A6 -- "Enhances" --> A2 | ||
| A2 -- "Sends Query to" --> A4 | ||
| ``` | ||
|
|
||
| ## Chapters | ||
|
|
||
| 1. [User Interface (UI) Presentation](./Chapter%201:%20User%20Interface%20(UI)%20Presentation.md) | ||
| 2. [Book (Domain Model)](./Chapter%202:%20Book%20(Domain%20Model).md) | ||
| 3. [Application Orchestration](./Chapter%203:%20Application%20Orchestration.md) | ||
| 4. [Core Search Engine](./Chapter%204:%20Core%20Search%20Engine.md) | ||
| 5. [Text Preprocessing](./Chapter%205:%20Text%20Preprocessing.md) | ||
| 6. [Offline Search Indexing](./Chapter%206:%20Offline%20Search%20Indexing.md) | ||
| 7. [Intelligent Search Enhancements](./Chapter%207:%20Intelligent%20Search%20Enhancements.md) | ||
| 8. [User Behavior Analytics](./Chapter%208:%20User%20Behavior%20Analytics.md) | ||
|
|
||
|
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.