We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7ffc432 + 541114f commit 7994bedCopy full SHA for 7994bed
3 files changed
.gitignore
@@ -1,5 +1,6 @@
1
# MeshMapper API configuration (contains sensitive API key)
2
-content/config.js
+# Note: config.js is now tracked with placeholder value for local development
3
+# During deployment, GitHub Actions regenerates it with the actual API key
4
5
# Node modules (if added in the future)
6
node_modules/
content/config.js
@@ -0,0 +1,5 @@
+// MeshMapper API Configuration
+// This file contains the API key for posting to MeshMapper API
+// During GitHub Pages deployment, this file is automatically regenerated with the actual API key from GitHub Secrets
+// For local development, the placeholder value will cause the API post to be skipped
+window.MESHMAPPER_API_KEY = "YOUR_API_KEY_HERE";
content/config.template.js
0 commit comments