Skip to content

jadwalapp/symmetrical-spoon

Repository files navigation

symmetrical spoon

you know, something :D

Requirements

Software that helps:

Generating connectRPC code from proto files

buf lint
buf generate

To generate diagrams using PlantUML locally

docker run --rm -p 8094:8080 plantuml/plantuml-server:jetty

Setting up APNS Certificate

To use APNS (Apple Push Notification Service), you'll need to convert your .p8 certificate file to base64 and set it as an environment variable:

  1. Convert your .p8 file to base64:
base64 -i AuthKey_XXXXX.p8
  1. Set the base64 string as an environment variable:
export APNS_AUTH_KEY="YOUR_BASE64_STRING_HERE"

Or add it to your .env file:

APNS_AUTH_KEY=YOUR_BASE64_STRING_HERE