-
-
Notifications
You must be signed in to change notification settings - Fork 0
#72 Create simple github page for future documentation #78
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
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,53 @@ | ||
| name: Deploy Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pages: write | ||
Check noticeCode scanning / SonarCloud Write permissions should be defined at the job level Low
Move this write permission from workflow level to job level. See more on SonarQube Cloud
|
||
| id-token: write | ||
Check noticeCode scanning / SonarCloud Write permissions should be defined at the job level Low
Move this write permission from workflow level to job level. See more on SonarQube Cloud
|
||
|
|
||
| concurrency: | ||
| group: pages | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: '3.13' | ||
|
|
||
| - name: Install documentation dependencies | ||
| run: python -m pip install --upgrade pip && python -m pip install -r docs/requirements.txt | ||
|
|
||
| - name: Build site | ||
| run: mkdocs build -f docs/mkdocs.yml --site-dir site | ||
|
|
||
| - name: Configure Pages | ||
| uses: actions/configure-pages@v5 | ||
|
|
||
| - name: Upload artifact | ||
| uses: actions/upload-pages-artifact@v4 | ||
| with: | ||
| path: site | ||
|
|
||
| deploy: | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| runs-on: ubuntu-latest | ||
| needs: build | ||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 | ||
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
Binary file added
BIN
+396 Bytes
docs/docs/assets/folder_open_24dp_8B1A10_FILL0_wght400_GRAD0_opsz24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+841 Bytes
docs/docs/assets/folder_open_48dp_8B1A10_FILL0_wght400_GRAD0_opsz48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
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,39 @@ | ||
| # Workdir | ||
|
|
||
|  | ||
|  | ||
|  | ||
| [](https://sonarcloud.io/summary/new_code?id=dseichter_Workdir) | ||
|
|
||
| Workdir helps you work with multiple directories and run commands without manually navigating to each location. | ||
|
|
||
|  | ||
|
|
||
| Binaries for Windows and Linux are available (see [releases](https://github.com/dseichter/Workdir/releases)). | ||
|
|
||
| [](https://github.com/dseichter/Workdir/releases) | ||
|  | ||
| [](https://github.com/dseichter/Workdir/issues) | ||
| [](https://github.com/dseichter/Workdir/pulls) | ||
|
|
||
| ## Features | ||
|
|
||
| - Manage many directories from one UI | ||
| - Configure up to six commands per directory | ||
| - Use confirmation prompts for sensitive commands | ||
| - Attach additional environment variables for execution | ||
| - Reuse Workdir with multiple independent configurations | ||
|
|
||
| ## Installation and Configuration | ||
|
|
||
| Download the [latest release](https://github.com/dseichter/Workdir/releases) into a destination folder of your choice and start the program. | ||
|
|
||
| Via the configuration (menu Extras) you can specify your directories and store up to six commands. | ||
|
|
||
|  | ||
|
|
||
| Please always specify the directories using the placeholder `{directory}`. This value is replaced automatically when commands are executed. | ||
|
|
||
| ## Known Issues | ||
|
|
||
| If you run Workdir the first time, the window can be very small. The size is automatically adjusted based on your configured directories. |
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,41 @@ | ||
| site_name: Workdir | ||
| site_url: https://dseichter.github.io/Workdir/ | ||
| site_description: Working with multiple directories and execute commands without navigate to them. | ||
| site_author: Daniel Seichter | ||
| copyright: Copyright © 2024-2026 Daniel Seichter | ||
| repo_url: https://github.com/dseichter/Workdir | ||
| repo_name: dseichter/Workdir | ||
|
|
||
| theme: | ||
| name: material | ||
| logo: assets/folder_open_48dp_8B1A10_FILL0_wght400_GRAD0_opsz48.png | ||
| favicon: assets/folder_open_24dp_8B1A10_FILL0_wght400_GRAD0_opsz24.png | ||
| icon: | ||
| alternate: fontawesome/solid/globe | ||
| palette: | ||
| - scheme: slate | ||
| primary: cyan | ||
| accent: green | ||
| toggle: | ||
| icon: material/weather-sunny | ||
| name: Switch to light mode | ||
| default: true | ||
| - scheme: default | ||
| primary: cyan | ||
| accent: green | ||
| toggle: | ||
| icon: material/weather-night | ||
| name: Switch to dark mode | ||
|
|
||
| nav: | ||
| - Home: index.md | ||
|
|
||
| markdown_extensions: | ||
| - attr_list | ||
| - footnotes | ||
| - admonition | ||
| - pymdownx.details | ||
| - pymdownx.superfences | ||
| - pymdownx.emoji: | ||
| emoji_index: !!python/name:material.extensions.emoji.twemoji | ||
| emoji_generator: !!python/name:material.extensions.emoji.to_svg |
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,2 @@ | ||
| mkdocs==1.6.1 | ||
| mkdocs-material==9.7.2 |
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.
Check notice
Code scanning / SonarCloud
Read permissions should be defined at the job level Low