Build and Deploy configuration
Given that we use a private registry to host the spirokit's packages, you will need to automate the authentication and authorization process during build and deploy on EAS build or Vercel, so you can install the dependency.
Once you created your account in our private registry following the steps described in the Installation docs, you can use your username and password to generate a base64-encoded token that will be used as auth token.
Run the following command in your terminal:
echo -n 'username:password' | base64
Replace "username" and "password" with your credentials, and copy the resulting string.
Then, set the SPIROKIT_AUTH_TOKEN environment variable / secret with the base64
string on your EAS Build/Vercel project, and you are good to go.
Finally, make sure to also set the TAMAGUI_TARGET environment variable / secret with the value native. Otherwise, the build will fail.