Skip to content

Commit 61174df

Browse files
author
bestia.dev
committed
.gitignore
1 parent a4f704b commit 61174df

File tree

3 files changed

+61
-10
lines changed

3 files changed

+61
-10
lines changed

.gitignore

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
1-
/target
1+
# .gitignore will forbid for these files and folders to be committed in git.
22

3-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
3+
# Compiling artifacts are generated by cargo.
4+
/target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries.
47
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
5-
# Cargo.lock
8+
Cargo.lock
69

7-
# These are backup files generated by rustfmt
10+
# These are backup files generated by rustfmt.
811
**/*.rs.bk
912

10-
# not needed in commits, but also not a problem if they are committed
11-
/.automation_tasks_rs_file_hashes.json
13+
# Result of compilation does not need to go to repository.
14+
/pkg/
15+
16+
# Not needed in commits, but also not a problem if they are committed.
17+
/.automation_tasks_rs_file_hashes.json
18+
/.file_hashes.json
19+
/.old_metadata.json
20+
21+
# Logs for tracing in development are not committed.
22+
/logs/
23+
24+
# Temporary files are not needed in the repository.
25+
/tmp/

automation_tasks_rs/.gitignore

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
1-
/target
2-
/logs
1+
# .gitignore will forbid for these files and folders to be committed in git.
32

4-
# so the GitHub action gets the fresh libraries
3+
# Compiling artifacts are generated by cargo.
4+
/target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries.
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
58
Cargo.lock
69

7-
# not needed in commits, but also not a problem if they are committed
10+
# These are backup files generated by rustfmt.
11+
**/*.rs.bk
12+
13+
# Result of compilation does not need to go to repository.
14+
/pkg/
15+
16+
# Not needed in commits, but also not a problem if they are committed.
17+
/.automation_tasks_rs_file_hashes.json
818
/.file_hashes.json
919
/.old_metadata.json
20+
21+
# Logs for tracing in development are not committed.
22+
/logs/
23+
24+
# Temporary files are not needed in the repository.
25+
/tmp/

automation_tasks_rs/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 bestia.dev
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)