How to use Upstash GeoLocation through Azion
Preview
Upstash GeoLocation is an automation designed to deploy a database directly on the edge while enabling the configuration of custom messages that will be delivered according to the user’s geographical location.
These messages are delivered through a static interface, based on HTML and generated by the template after deployment.
Requirements
Section titled RequirementsBefore using this template, you need to:
- Create an Upstash account.
- Create a Global Database for the best available edge latency in the Upstash Console.
- Generate your GitHub personal token.
Getting the template
Section titled Getting the templateTo start using the Upstash GeoLocation template, proceed as follows:
- Access Real-Time Manager (RTM).
- If you don’t have an account yet, create a new one by visiting the sign-up page.
- On the homepage, select the Start with a template option.
- Find the Upstash GeoLocation card and select it.
- Click the Settings tab to open the configuration section.
Setting up the template
Section titled Setting up the templateIn the configuration form, you must provide the information to configure your Azion application. Fill in the presented fields.
Fields identified with an asterisk are mandatory.
- Application Name *: the name of your edge application. It’s used to identify and manage your application within Azion’s platform.
- Use a unique and easy-to-remember name. If the name has already been used, the platform returns an error message.
- Upstash Redis Rest URL *: the URL to access your Upstash database using REST.
- Go to your Upstash Console and copy the
UPSTASH_REDIS_REST_URL
in your database page.
- Go to your Upstash Console and copy the
- Upstash Redis Rest Token *: the token to authorize access to your Upstash database using REST.
- Go to your Upstash Console and copy the
UPSTASH_REDIS_REST_TOKEN
in your database page.
- Go to your Upstash Console and copy the
- GitHub Personal Token *: your GitHub personal token.
After completing all the information, click the Next button, located in the bottom-right corner. This will start the deployment process.
Deploying the template
Section titled Deploying the templateDuring the deployment, you’ll be able to follow the process through a window showing off the logs. When it’s complete, the deployment page appears, confirming the edge application for your project has been successfully created.
This page shows you the following sections:
- Access your Edge Application section includes the link to visit and explore your edge application.
- Build Summary contains the application’s name and function.
- The Deployment details tab can be opened to access the logs related to the deployment.
- What do you want to do next? provides recommendations regarding advanced options to enhance your edge application: Customize Domain, Manage Edge Application, View Edge Application Metrics, View Edge Application Logs, and the Back to Home button.
Key configurations
Section titled Key configurationsUpstash GeoLocation EdgeDeploy creates a new Azion edge application and its domain. It also creates an edge function to provide the arguments for the geolocation, a new repository in your GitHub account based on a public template, and a static interface to show the messages.
In this function, the upstash/redis
library is integrated, connecting to your Upstash Global Database and retrieving the message based on the user’s location. This location is taken from the metadata ["geoip_country_code"]
.
The template also incorporates location-based greetings in your database, which are retrieved from the integration with Upstash, similar to this:
Welcome to Upstash CLI
set BR "Olá, tudo bem!"OKset GB "Ey up?"OKset US "Yo, what’s up?"OKset IN "Namaste"OK
You can customize these greetings on your Upstash database to attend to your necessities.
To know more on how to edit and customize your project’s settings, go to the Managing your project on Azion section.
Additionally, to guarantee the optimal performance of this template, you must activate the following modules:
You must activate these modules separately via RTM. To do so:
- Access RTM.
- On the upper-left corner, select the three horizontal lines to open the Products menu.
- In the BUILD section, select Edge Application.
- You’ll be redirected to the Edge Application page.
- It lists all the edge applications you’ve created.
- Find the edge application related to your template and select it.
- In the Main Settings tab, find the Edge Application Modules section and activate the switch for the module you want to enable.
Managing your project on Azion
Section titled Managing your project on AzionConsidering that this initial setup may not be optimal for your specific edge application, all settings can be customized any time you need by using Azion Real-Time Manager (RTM). Once the template is deployed, you also have full control over customizing your Upstash account and database.
To manage and edit your edge application’s settings, follow these steps:
- Access RTM.
- On the upper-left corner, select the three horizontal lines to open the Products menu.
- In the BUILD section, select Edge Application.
- You’ll be redirected to the Edge Application page.
- It lists all the edge applications you’ve created.
- Find the edge application related to the QStash template and select it.
- The list is organized alphabetically. You can also use the search bar located in the upper-left corner of the list; currently, it filters only by Application Name.
After selecting the edge application you’ll work on, you’ll be directed to a page containing all the settings you can configure.
Continuous deployment
Section titled Continuous deploymentOnce the template is deployed, you can edit and update your args and code in the edge function, as well as implement a continuous deployment workflow. However, you’ll need first to declare secrets on your project’s GitHub repository to complete the second build with the changes. When the second build is finished, you’ll be able to manage your project with a continuous deployment workflow and edit the args as desired.
To do so, open your Upstash GeoLocation EdgeDeploy repository on GitHub. Then, go to Settings > Secrets and variables > Action to add your variables, following these instructions:
- Add the Azion personal token to the secrets:
- Read how to generate an Azion Personal Token in the documentation.
AZION_PERSONAL_TOKEN=<value>
- Add the environments for use in the action workflow in the main.yml file, included in the .github/workflows folder of your repository:
- name: edge-... id: azion_edge ... with: .... azionPersonalToken: ${{ secrets.AZION_PERSONAL_TOKEN }} ....
- Add the Redis Database access credentials to the secrets, being:
- UPSTASH_REDIS_REST_URL: the URL to access your Upstash database using REST.
- Go to your Upstash Console and copy the
UPSTASH_REDIS_REST_URL
in your database page.
- Go to your Upstash Console and copy the
- UPSTASH_REDIS_REST_TOKEN: the token to authorize access to your Upstash database using REST.
- Go to your Upstash Console and copy the
UPSTASH_REDIS_REST_TOKEN
in your database page.
- Go to your Upstash Console and copy the
UPSTASH_REDIS_REST_URL=<value> UPSTASH_REDIS_REST_TOKEN=<value>;
- Add the environments for use in the action workflow in the main.yml file, included in the .github/workflows folder of your repository:
- name: Create args file run: | ... "UPSTASH_REDIS_REST_URL": "${{ secrets.UPSTASH_REDIS_REST_URL }}", "UPSTASH_REDIS_REST_TOKEN": "${{ secrets.UPSTASH_REDIS_REST_TOKEN }}", ...
- Open a pull request to merge the changes to the main branch and start the automatic deployment.
Now your project is ready to work with a continuous deployment workflow, updating instantly any changes in the application or the repository.
Adding a custom domain
Section titled Adding a custom domainThe edge application created during the deployment has an assigned Azion domain to make it accessible through the browser. The domain has the following format: xxxxxxxxxx.map.azionedge.net
. However, you can add a custom domain for users to access your edge application through it.
Contributors