-
Notifications
You must be signed in to change notification settings - Fork 20
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
Add new integration #171
Merged
swilliamson7
merged 12 commits into
milankl:sw/single-struct
from
swilliamson7:add-new-integration
Apr 10, 2024
Merged
Add new integration #171
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a97a1f7
Update .gitignore
swilliamson7 ff2977b
Adding new runid
swilliamson7 fb2f734
Merge pull request #1 from swilliamson7/runid_change
swilliamson7 71de84c
Update .gitignore
swilliamson7 2268c18
update .gitignore
milankl 3436481
add Manifest.toml to .gitignore
milankl 897e399
Fixing the output function on main
swilliamson7 7adc9dc
.
swilliamson7 73ed46c
adding what's needed to move everything to a single structure
swilliamson7 62a9d4c
Finished
swilliamson7 7dee96a
Verified that integration still works
swilliamson7 d61a680
Not sure how the Manifest.toml got ignored
swilliamson7 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 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,6 +1,45 @@ | ||
.DS_Store | ||
|
||
# Files generated by invoking Julia with --code-coverage | ||
*.jl.cov | ||
*.jl.*.cov | ||
|
||
# Files generated by invoking Julia with --track-allocation | ||
*.jl.mem | ||
|
||
# System-specific files and directories generated by the BinaryProvider and BinDeps packages | ||
# They contain absolute paths specific to the host computer, and so should not be committed | ||
deps/deps.jl | ||
deps/build.log | ||
deps/downloads/ | ||
deps/usr/ | ||
deps/src/ | ||
|
||
# Build artifacts for creating documentation generated by the Documenter package | ||
docs/build/ | ||
docs/site/ | ||
|
||
# PythonCall added .CondaPkg to /docs | ||
docs/.CondaPkg | ||
|
||
# File generated by Pkg, the package manager, based on a corresponding Project.toml | ||
# It records a fixed state of all packages used by the project. As such, it should not be | ||
# committed for packages, but should be committed for applications that require a static | ||
# environment. | ||
|
||
# no jupyter notebook checkpoints | ||
.ipynb_* | ||
|
||
# no model output folders and data | ||
run_*/ | ||
*.jld | ||
*.nc | ||
|
||
# no video outputs | ||
*.mp4 | ||
|
||
# no nohup outputs | ||
nohup.out | ||
progress.txt | ||
parameter.txt | ||
|
||
# ignoring a folder on my computer (SW) | ||
/my_scripts | ||
Oops, something went wrong.
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.
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.
This should probably be reverted for general users
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.
I agree, but I admittedly don't know how to push my code without having this line in the .gitignore (if I don't want that folder online). Do you usually manually remove it on Github?
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.
You can
.
here, that opens a VS code session for this branch in which you can change things and push them without local changes