-
Notifications
You must be signed in to change notification settings - Fork 0
Normalize line endings to LF across repository files #8
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
Draft
Copilot
wants to merge
4
commits into
main
Choose a base branch
from
copilot/add-user-login-feature
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 |
|---|---|---|
| @@ -1,56 +1,56 @@ | ||
| # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | ||
| # More GitHub Actions for Azure: https://github.com/Azure/actions | ||
| name: Build and deploy JAR app to Azure Web App - Catoconsting | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| jobs: | ||
| build: | ||
| runs-on: windows-latest | ||
| permissions: | ||
| contents: read #This is required for actions/checkout | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - name: Set up Java version | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'microsoft' | ||
| - name: Build with Maven | ||
| run: mvn clean install | ||
| - name: Upload artifact for deployment job | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: java-app | ||
| path: '${{ github.workspace }}/target/*.jar' | ||
| deploy: | ||
| runs-on: windows-latest | ||
| needs: build | ||
| steps: | ||
| - name: Download artifact from build job | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: java-app | ||
| - name: Deploy to Azure Web App | ||
| id: deploy-to-webapp | ||
| uses: azure/webapps-deploy@v3 | ||
| with: | ||
| app-name: 'Catoconsting' | ||
| slot-name: 'Production' | ||
| package: '*.jar' | ||
| publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_2294C70C1BD64F72AAF4A8ED0F6CAEF6 }} | ||
| # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | ||
| # More GitHub Actions for Azure: https://github.com/Azure/actions | ||
|
|
||
| name: Build and deploy JAR app to Azure Web App - Catoconsting | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: windows-latest | ||
| permissions: | ||
| contents: read #This is required for actions/checkout | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up Java version | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: '17' | ||
| distribution: 'microsoft' | ||
|
|
||
| - name: Build with Maven | ||
| run: mvn clean install | ||
|
|
||
| - name: Upload artifact for deployment job | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: java-app | ||
| path: '${{ github.workspace }}/target/*.jar' | ||
|
|
||
| deploy: | ||
| runs-on: windows-latest | ||
| needs: build | ||
|
|
||
|
|
||
| steps: | ||
| - name: Download artifact from build job | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: java-app | ||
|
|
||
| - name: Deploy to Azure Web App | ||
| id: deploy-to-webapp | ||
| uses: azure/webapps-deploy@v3 | ||
| with: | ||
| app-name: 'Catoconsting' | ||
| slot-name: 'Production' | ||
| package: '*.jar' | ||
|
|
||
| publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_2294C70C1BD64F72AAF4A8ED0F6CAEF6 }} | ||
|
|
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 |
|---|---|---|
| @@ -1,69 +1,69 @@ | ||
| # SpecStory Artifacts Directory | ||
| This directory is automatically created and maintained by the SpecStory extension to preserve your AI chat history. | ||
| ## What's Here? | ||
| - `.specstory/history`: Contains auto-saved markdown files of your AI coding sessions | ||
| - Each file represents a separate AI chat session | ||
| - If you enable auto-save, files are automatically updated as you work | ||
| - You can enable/disable the auto-save feature in the SpecStory settings, it is disabled by default | ||
| - `.specstory/.project.json`: Contains the persistent project identity for the current workspace | ||
| - This file is only present if you enable AI rules derivation | ||
| - This is used to provide consistent project identity of your project, even as the workspace is moved or renamed | ||
| - `.specstory/ai_rules_backups`: Contains backups of the `.cursor/rules/derived-cursor-rules.mdc` or the `.github/copilot-instructions.md` file | ||
| - Backups are automatically created each time the `.cursor/rules/derived-cursor-rules.mdc` or the `.github/copilot-instructions.md` file is updated | ||
| - You can enable/disable the AI Rules derivation feature in the SpecStory settings, it is disabled by default | ||
| - `.specstory/.gitignore`: Contains directives to exclude non-essential contents of the `.specstory` directory from version control | ||
| - Add `/history` to exclude the auto-saved chat history from version control | ||
| ## Valuable Uses | ||
| - Capture: Keep your context window up-to-date when starting new Chat/Composer sessions via @ references | ||
| - Search: For previous prompts and code snippets | ||
| - Learn: Meta-analyze your patterns and learn from your past experiences | ||
| - Derive: Keep the AI on course with your past decisions by automatically deriving rules from your AI interactions | ||
| ## Version Control | ||
| We recommend keeping this directory under version control to maintain a history of your AI interactions. However, if you prefer not to version these files, you can exclude them by adding this to your `.gitignore`: | ||
| ``` | ||
| .specstory/** | ||
| ``` | ||
| We recommend __not__ keeping the `.specstory/ai_rules_backups` directory under version control if you are already using git to version your AI rules, and committing regularly. You can exclude it by adding this to your `.gitignore`: | ||
| ``` | ||
| .specstory/ai_rules_backups | ||
| ``` | ||
| ## Searching Your Codebase | ||
| When searching your codebase, search results may include your previous AI coding interactions. To focus solely on your actual code files, you can exclude the AI interaction history from search results. | ||
| To exclude AI interaction history: | ||
| 1. Open the "Find in Files" search in Cursor or VSCode (Cmd/Ctrl + Shift + F) | ||
| 2. Navigate to the "files to exclude" section | ||
| 3. Add the following pattern: | ||
| ``` | ||
| .specstory/* | ||
| ``` | ||
| This will ensure your searches only return results from your working codebase files. | ||
| ## Notes | ||
| - Auto-save only works when Cursor or VSCode flushes sqlite database data to disk. This results in a small delay after the AI response is complete before SpecStory can save the history. | ||
| ## Settings | ||
| You can control auto-saving behavior in Cursor or VSCode: | ||
| 1. Open Cursor/Code → Settings → VS Code Settings (Cmd/Ctrl + ,) | ||
| 2. Search for "SpecStory" | ||
| 3. Find "Auto Save" setting to enable/disable | ||
| # SpecStory Artifacts Directory | ||
|
|
||
| This directory is automatically created and maintained by the SpecStory extension to preserve your AI chat history. | ||
|
|
||
| ## What's Here? | ||
|
|
||
| - `.specstory/history`: Contains auto-saved markdown files of your AI coding sessions | ||
| - Each file represents a separate AI chat session | ||
| - If you enable auto-save, files are automatically updated as you work | ||
| - You can enable/disable the auto-save feature in the SpecStory settings, it is disabled by default | ||
| - `.specstory/.project.json`: Contains the persistent project identity for the current workspace | ||
| - This file is only present if you enable AI rules derivation | ||
| - This is used to provide consistent project identity of your project, even as the workspace is moved or renamed | ||
| - `.specstory/ai_rules_backups`: Contains backups of the `.cursor/rules/derived-cursor-rules.mdc` or the `.github/copilot-instructions.md` file | ||
| - Backups are automatically created each time the `.cursor/rules/derived-cursor-rules.mdc` or the `.github/copilot-instructions.md` file is updated | ||
| - You can enable/disable the AI Rules derivation feature in the SpecStory settings, it is disabled by default | ||
| - `.specstory/.gitignore`: Contains directives to exclude non-essential contents of the `.specstory` directory from version control | ||
| - Add `/history` to exclude the auto-saved chat history from version control | ||
|
|
||
| ## Valuable Uses | ||
|
|
||
| - Capture: Keep your context window up-to-date when starting new Chat/Composer sessions via @ references | ||
| - Search: For previous prompts and code snippets | ||
| - Learn: Meta-analyze your patterns and learn from your past experiences | ||
| - Derive: Keep the AI on course with your past decisions by automatically deriving rules from your AI interactions | ||
|
|
||
| ## Version Control | ||
|
|
||
| We recommend keeping this directory under version control to maintain a history of your AI interactions. However, if you prefer not to version these files, you can exclude them by adding this to your `.gitignore`: | ||
|
|
||
| ``` | ||
| .specstory/** | ||
| ``` | ||
|
|
||
| We recommend __not__ keeping the `.specstory/ai_rules_backups` directory under version control if you are already using git to version your AI rules, and committing regularly. You can exclude it by adding this to your `.gitignore`: | ||
|
|
||
| ``` | ||
| .specstory/ai_rules_backups | ||
| ``` | ||
|
|
||
| ## Searching Your Codebase | ||
|
|
||
| When searching your codebase, search results may include your previous AI coding interactions. To focus solely on your actual code files, you can exclude the AI interaction history from search results. | ||
|
|
||
| To exclude AI interaction history: | ||
|
|
||
| 1. Open the "Find in Files" search in Cursor or VSCode (Cmd/Ctrl + Shift + F) | ||
| 2. Navigate to the "files to exclude" section | ||
| 3. Add the following pattern: | ||
|
|
||
| ``` | ||
| .specstory/* | ||
| ``` | ||
|
|
||
| This will ensure your searches only return results from your working codebase files. | ||
|
|
||
| ## Notes | ||
|
|
||
| - Auto-save only works when Cursor or VSCode flushes sqlite database data to disk. This results in a small delay after the AI response is complete before SpecStory can save the history. | ||
|
|
||
| ## Settings | ||
|
|
||
| You can control auto-saving behavior in Cursor or VSCode: | ||
|
|
||
| 1. Open Cursor/Code → Settings → VS Code Settings (Cmd/Ctrl + ,) | ||
| 2. Search for "SpecStory" | ||
| 3. Find "Auto Save" setting to enable/disable | ||
|
|
||
| Auto-save occurs when changes are detected in the sqlite database, or every 2 minutes as a safety net. |
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 | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,16 +1,16 @@ | ||||||||||||||||||||||
| <!-- Generated by SpecStory --> | ||||||||||||||||||||||
| # install jave (2025-07-06 16:11Z) | ||||||||||||||||||||||
| _**User**_ | ||||||||||||||||||||||
| install jave | ||||||||||||||||||||||
| --- | ||||||||||||||||||||||
| _**Assistant**_ | ||||||||||||||||||||||
| I'll help you install Java. Let me check your current workspace and system to provide the best installation approach. | ||||||||||||||||||||||
| --- | ||||||||||||||||||||||
| <!-- Generated by SpecStory --> | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # install jave (2025-07-06 16:11Z) | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| _**User**_ | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| install jave | ||||||||||||||||||||||
|
Comment on lines
+3
to
+7
|
||||||||||||||||||||||
| # install jave (2025-07-06 16:11Z) | |
| _**User**_ | |
| install jave | |
| # install java (2025-07-06 16:11Z) | |
| _**User**_ | |
| install java |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling of 'jave' to 'java'.