-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support generating a new workspace (not full app, just workspace). So…
…me robustness updates for launching windows commands.
- Loading branch information
origen
committed
Oct 18, 2023
1 parent
2ffa013
commit e897f1f
Showing
21 changed files
with
267 additions
and
120 deletions.
There are no files selected for viewing
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
29 changes: 29 additions & 0 deletions
29
rust/origen/cli/src/commands/new/templates/shared/.gitignore
This file contains 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,29 @@ | ||
# Workspace directories | ||
/.origen | ||
/tmp | ||
/.ref | ||
/log | ||
/.session | ||
|
||
# Output directories | ||
/output | ||
/web/source/_static/build | ||
/web/source/interbuild | ||
/dist | ||
|
||
{% if app_gen -%} | ||
# Release scribe dry-run output and release notes | ||
config/history.generated.dry_run.toml | ||
release_note.txt | ||
{% endif -%} | ||
|
||
# Cache directories | ||
__pycache__ | ||
.pytest_cache | ||
|
||
# Editor cruft | ||
*.swp | ||
*.swo | ||
*~ | ||
*.pylintrc | ||
.vscode |
14 changes: 14 additions & 0 deletions
14
rust/origen/cli/src/commands/new/templates/shared/origen.toml.tera
This file contains 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,14 @@ | ||
# Use this to define your application-specific Origen configuration | ||
# Do not delete it even if you don't use it since it is also used by the Origen | ||
# command line interface to determine when it is in an Origen application workspace | ||
|
||
# Specify what command should be used to invoke python, if not specified | ||
# Origen will try python, python3, python3.8, etc. until one is found that | ||
# satisfies the minimum Python version requirement | ||
#python_cmd = "mypython" | ||
|
||
# If your company has an internal package server enter it here: | ||
#pkg_server = "https://pkgs.company.net:9292" | ||
# or here, if you need to use different urls for push and pull (write and read): | ||
#pkg_server_push = "https://pkgs.company.net:9292" | ||
#pkg_server_pull = "https://pkgs.company.net:9292" |
Oops, something went wrong.