Skip to content

Commit

Permalink
feat: 🎸 Initial commit of existing code and Terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
Clete2 committed Jun 16, 2023
1 parent 85021e6 commit 61a1fb4
Show file tree
Hide file tree
Showing 56 changed files with 5,374 additions and 8 deletions.
20 changes: 16 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,24 @@
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb


.terraform.lock.hcl
.terraform/
.env
bootstrap.zip
.DS_Store
.dtmp
# Added by cargo

/target
reports/tarpaulin-report.html

# DrawIO Temp Files
.$*.bkp
.$*.dtmp
27 changes: 27 additions & 0 deletions .releaserc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# --------------------------------------------
#
# Standard recommended semantic-release configuration.
#
# Alternative configurations
# - A .releaserc file, written in YAML or JSON, with optional extensions: .yaml/.yml/.json/.js
# - A release.config.js file that exports an object
# - A release key in the project's package.json file
# Source: https://semantic-release.gitbook.io/semantic-release/usage/configuration#configuration-file
#
#----------------------------------------------

---
branches:
- master
- main
plugins:
- "@semantic-release/commit-analyzer"
- - "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- - "@semantic-release/git"
- assets:
- CHANGELOG.md
- dist/global_retention_setter/bootstrap
- dist/log_retention_setter/bootstrap
- README.md
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
6 changes: 6 additions & 0 deletions .tarpaulin.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[coverage]
exclude-files = ["src/cloudwatch_logs_traits.rs", "src/cloudwatch_metrics_traits.rs", "src/error.rs"]

[report]
out = ["Html", "Xml", "Stdout"]
output-dir = "reports"
Loading

0 comments on commit 61a1fb4

Please sign in to comment.