Move HTML Mail template to html file
This should work for multiple parallel events
- LATER
- Need config and templates to be ID associated and pass around which one a payment refers to
Need NFT minting functionality for users
Add Event Pass functionality
- LATER
Need ADMIN functions to
- issue a custom ticket to someone
- delete / invalidate some ticket
There are a few HTML templates that can be customized. They can be found in the /template folder. They mostly serve as examples, you are encouraged to create your own.
The 3 files shop.html
, success.html
and error.html
are static HTML files and can be hosted / integrated on any website you choose.
This template is for the ticket sale site. All it does is redirect to stripe when the button is clicked.
This template is for the purchase confirmation.
This template is used when the customer cancels the checkout process.
This template is used to generate PDFs containing the event ticket. The text is customizable in the config.json.
It is necessary to configure Google Cloud. First the OAuth consent screen should be set up cloud console. Enter some authorized domains and allow the privileges for:
- Gmail API - auth/gmail.send
- Google Sheets API - auth/spreadsheets (check if this can be further restricted)
Then go to credentials and click Create OAuth client ID
. Enter the details for your web application.
Store the generated configuration in the google.credentials.json
in the main folder of this app.
You might need to add the redirect_uris
section to the generated file, so that it looks something like this:
{
"web": {
"client_id": ...,
"project_id": ...,
"auth_uri": ...,
"token_uri": ...,
"auth_provider_x509_cert_url": ...,
"client_secret": ...,
"redirect_uris": [
"http://localhost:3040/oauth2callback"
]
}
}
You can then run the app using node app
and visit the /connectGoogle
endpoint. This will then generate the google.token.json
for your app.
Setup:
npm install
Run:
node app
https://dashboard.stripe.com/test/webhooks/create?endpoint_location=local https://stripe.com/docs/api/products/object https://dashboard.stripe.com/settings/branding https://stripe.com/docs/stripe-cli
./stripe login
./stripe listen --forward-to localhost:3001/stripeCallback