Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Azure-Samples/dab-swa-todo
End-to-end Jamstack Todo list application with Data API builder and Static Web Apps
https://github.com/Azure-Samples/dab-swa-todo
Last synced: 9 days ago
JSON representation
End-to-end Jamstack Todo list application with Data API builder and Static Web Apps
- Host: GitHub
- URL: https://github.com/Azure-Samples/dab-swa-todo
- Owner: Azure-Samples
- License: mit
- Created: 2023-03-02T19:28:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-19T16:50:26.000Z (6 months ago)
- Last Synced: 2024-08-13T07:18:28.234Z (4 months ago)
- Language: Vue
- Homepage:
- Size: 71.3 KB
- Stars: 14
- Watchers: 13
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - Azure-Samples/dab-swa-todo - End-to-end Jamstack Todo list application with Data API builder and Static Web Apps (Vue)
README
---
page_type: sample
languages:
- azurecli
- azstatic-cli
- aspx
- csharp
- nodejs
- javascript
- data-api-builder
products:
- azure
- static-web-apps
- azure-sql-database
urlFragment: sample
name: Jamstack Todo App with Azure Static Web Apps, Data API builder, and Azure SQL Database
description: This app creates a backend REST API with the Data API builder, uses Easy Auth configured with GitHub, authorizes data access using Data API builder prolicies, and hosts Data API builder in Azure Static Web Apps using "database connections."
---# Jamstack Todo App with Azure Static Web Apps, Data API builder and Azure SQL Database
A sample Todo app built with Vue.js that uses Azure Static Web Apps, Data API builder and Azure SQL Database.
The Todo application allows to
- Create either public or private todos
- Update or delete todos
- Mark a todo as completed
- Drag and drop to reorder todosit uses the following features
- Backend REST API via Data API builder
- Authentication via Easy Auth configured to use GitHub
- Authorization via Data API builder policies
- Data API builder hosted in Azure via Static Web Apps "Database Connections"## Local development
*Fork the repository* and clone it to your local machine.
Make sure you have the .NET Core 6, Node 16 and [Static Web Apps CLI](https://azure.github.io/static-web-apps-cli/docs/intro) installed.
### Deploy the database
Deploy the database project to an SQL Server or Azure SQL Emulator instance using VS Code Database Projects extension or manually using the [`sqlpackage`](https://learn.microsoft.com/sql/tools/sqlpackage/sqlpackage-download) tool.
If you don't have a SQL Server or Azure SQL Emulator installed locally, you can use the updated `sqlcmd` tool download the latest version of SQL Server and run it withint a container. (Note: make sure you have [Docker](https://www.docker.com/products/docker-desktop/) installed on your machine first)
Install the `sqlcmd` tool, using the documentation available [here](https://learn.microsoft.com/en-us/sql/tools/sqlcmd/go-sqlcmd-utility).
Then download the latest version of SQL Server:
```shell
sqlcmd create mssql --accept-eula --user-database TodoDB --context-name todo-demo
```once download is finished, make sure the container is running:
```shell
sqlcmd start todo-demo
```Get the connection string via
```shell
sqlcmd config connection-strings
```and the copy the ADO.NET connection string to the clipboard. It will look like this:
```
Server=;Initial Catalog=master;Persist Security Info=False;User ID=;Password=;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;
```Now create a `.env` text file and paste the connection string in there, so that the value it is assigned to the `AZURE_SQL_DEPLOY_USER` environment variable. It should look like this:
```shell
AZURE_SQL_DEPLOY_USER='Server=;Initial Catalog=master;Persist Security Info=False;User ID=;Password=;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;'
```in the `.env` file just created, replace the `Initial Catalog` value from `master` to `TodoDB`.
The `deploy-db.ps1` script can be used to deploy the database to a local SQL Server instance or Azure SQL Emulator. It will create a new database called `TodoDB` and a new user called `todo_dab_user`.
### Run the app locally
Once database has been deployed, build the Vue fronted via
```shell
swa build
```If you haven't create an `.env` file yet, create one in the root folder, and the `AZURE_SQL_APP_USER` environment variable to set it to the connection string pointing to the local SQL Server instance or Azure SQL Emulator:
```shell
AZURE_SQL_APP_USER='Server=;Database=TodoDB;User ID=;Password=;TrustServerCertificate=true;'
```if you have used the provided script to deploy the database, the connection string will be:
```shell
AZURE_SQL_APP_USER='Server=;Database=TodoDB;User ID=todo_dab_user;Password=rANd0m_PAzzw0rd!;TrustServerCertificate=true;'
```please notice that the `` value is the same as the one used to deploy the database. If you used `sqlcmd` to create the database, use `sqlcmd config connection-strings` to see that `` is for you. If you only have one instance of SQL Server installed, it will be `localhost`.
Then start the app locally using the following command:
```shell
swa start --data-api-location ./swa-db-connections
```## Deploy to Azure
Make sure you have the AZ CLI installed.
### Setup the Static Web App resource
Create a Resource Group if you don't have one already:
```shell
az group create -n -l
```then create a new Static Web App using the following command:
```shell
az staticwebapp create -n -g
```once it has been created, get the Static Web App deployment token:
```shell
az staticwebapp secrets list --name --query "properties.apiKey" -o tsv
```Take the token and add it to the repository secrets as `AZURE_STATIC_WEB_APPS_API_TOKEN`.
### Get the connection string to Azure SQL DB
Create a new Azure SQL Server if you don't have one already:
```shell
az sql server create -n -g -l --admin-user --admin-password
```and set yourself as the AD admin. To do that get your user object id:
```shell
az ad signed-in-user show --query objectId -o tsv
```and get the display name:
```shell
az ad signed-in-user show --query displayName -o tsv
```The create the AD admin in Azure SQL server:
```shell
az sql server ad-admin create --display-name --object-id --server -g
```Make sure that Azure Services can connect to the created Azure SQL server:
```shell
az sql server firewall-rule create -n AllowAllWindowsAzureIps -g --server --start-ip-address 0.0.0.0 --end-ip-address 0.0.0.0
```Make sure to read more details about how to configure the firewall here: [Connections from inside Azure](https://learn.microsoft.com/azure/azure-sql/database/firewall-configure?view=azuresql#connections-from-inside-azure)
Get the connection string (don't worry if the TodoDB database doesn't exist yet, it will be created later automatically):
```shell
az sql db show-connection-string -s -n TodoDB -c ado.net
```Replace the `` and `` in the connection string with those for a user that can perform DDL (create/alter/drop) operations on the database, and then create a new secret in the repository called `AZURE_SQL_CONNECTION_STRING` with the value of the connection string.
### Push the repository to GitHub
Push the repo to GitHub to kick off the deployment.
### Configure the Static Web App Database Connection
Once the deployment has completed, navigate to the Static Web App resource in the Azure Portal and click on the [Database connection](https://learn.microsoft.com/azure/static-web-apps/database-azure-sql?tabs=bash&pivots=static-web-apps-rest) item under *Settings*. Click on *Link existing database* to connect to the Azure SQL server and the TodoDB that was created by the deployment.
You can use the sample application user that is created during the [database deployment phase](./database/TodoDB/Script.PostDeployment.sql):
- User: `todo_dab_user`
- Password: `rANd0m_PAzzw0rd!`## Done!
Use your browser to navigate to the Static Web App URL and start using the app.