We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb3267 commit 14b7b19Copy full SHA for 14b7b19
.env.example
@@ -1,4 +1,4 @@
1
APPLE_PASS_TYPE_IDENTIFIER=
2
APPLE_TEAM_IDENTIFIER=
3
-CERTIFICATE_PATH="cert.p12"
+CERTIFICATE_PATH="keys/cert.p12"
4
CERTIFICATE_PASSWORD=
keys/.gitkeep
src/passes.rs
@@ -61,7 +61,7 @@ pub async fn passes_handler(Query(data): Query<PassModel>) -> Result<impl IntoRe
61
pass.export_to_file(
62
env::var("CERTIFICATE_PATH").unwrap().as_str(),
63
env::var("CERTIFICATE_PASSWORD").unwrap().as_str(),
64
- Path::new("apple_wdrca.pem"),
+ Path::new("keys/apple_wdrca.pem"),
65
Path::new("./Eventpass.pkpass"),
66
)
67
.unwrap();
0 commit comments