Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bitcoin-starter/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
# rust
target/

# icp-cli
# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file.
4 changes: 3 additions & 1 deletion hello-world/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@
# environment variables
.env

# icp-cli
# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file.
4 changes: 3 additions & 1 deletion motoko/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
.mops
*.wasm

# icp-cli
# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file added motoko/.icp/data/.gitkeep
Empty file.
4 changes: 4 additions & 0 deletions proxy/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file added proxy/.icp/data/.gitkeep
Empty file.
4 changes: 3 additions & 1 deletion rust/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
# rust
target/

# ingore the icp-cli cache
# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file added rust/.icp/data/.gitkeep
Empty file.
5 changes: 5 additions & 0 deletions static-website/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ dist-ssr
*.njsproj
*.sln
*.sw?

# icp-cli local cache (safe to delete, rebuilt on next build/deploy)
.icp/cache/
# Do NOT ignore .icp/data/ — it stores mainnet canister ID mappings.
# See: https://github.com/dfinity/icp-cli/blob/main/docs/concepts/project-model.md#whats-safe-to-delete
Empty file.
Loading