You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -59,23 +60,23 @@ Below you can see all the recorded videos about the application's development.
59
60
|**[Vídeo 18 - Dev Tools Overview & Installation]()**| In this video we are going to install all the necessary dev tools that we will go into need to develop our application in the BackEnd side. |
60
61
|**[Vídeo 19 - Configuring the .devContainer folder]()**| In this video we will understand the importance around to create a .devContainer folder in any project and a little overview about it! |
61
62
|**[Vídeo 20 - Important Resources & Recap]()**| Recap what we saw during the module 04 and preparing for what is coming! |
62
-
|**[Vídeo 21 - Application Overview]()**| In this video we will take a first look around the BackEnd application that we are going to build!|
63
-
| **[Vídeo 22 - Forking the Front-End project]()**| In this video we are going to forking/cloning the Front-End starter project!
64
-
|**[Vídeo 23 - Structuring the Back-End project]()**| In this video we are going to structuring the BackEnd project using Azure Functions.|
65
-
|**[Vídeo 24 - Creating Database Server]()**| In this video we are going to create our Database Server using the Azure Portal.|
66
-
|**[Vídeo 25 - Creating Database]()**| Now we already created our Database server, it's time to create our Employee Database using Azure Portal.|
67
-
|**[Vídeo 26 - Creating Shadow Database]()**| In this video we are going to create shadow database using Azure Portal.|
68
-
|**[Vídeo 27 - Installing Packages]()**| In this video we are going to install all the necessary packages for our project!|
69
-
|**[Vídeo 28 - Modeling Database with Prisma]()**| In this video we are going to learn how to initialize and modeling our database using Prisma.|
70
-
|**[Vídeo 29 - Using Prisma Migrations]()**| In this video we are going to understand how Prisma migrations works!|
71
-
|**[Vídeo 30 - Using Prisma Studio]()**| In this video we are going to take a look how Prisma Studio works and use it to manipulate our database.|
72
-
|**[Vídeo 31 - Developing 'CreateEmployee']()**| In this video we're going to create our first function: Create Employee using Prisma & Azure Functions|
73
-
|**[Vídeo 32 - Developing 'GetEmployees']()**| In this video we are going to develop the functionality to list all the employees using Azure Functions.|
74
-
|**[Vídeo 33 - Developing 'GetEmployee']()**| In this video we are going to develop the functionality to return an employee by Id using Azure Functions.|
75
-
|**[Vídeo 34 - Developing 'UpdateEmployee']()**| In this video we are going to develop the functionality to update an employee by Id using Azure Functions.|
76
-
|**[Vídeo 35 - Developing 'DeleteEmployee']()**| In this video we are going to develop the functionality to delete an employee by Id using Azure Functions.|
77
-
|**[Vídeo 36 - Deploying the App with ASWA]()**| In this video we are going to deploy our application using Azure Static Web Apps with GitHub Actions Integration!|
78
-
|**[Vídeo 37 - Next Steps]()**| In this video we are going to see the next steps that you should see after this course!|
63
+
|**[Vídeo 21 - Application Overview]()**| In this video we will take a first look around the BackEnd application that we are going to build! |
64
+
|**[Vídeo 22 - Forking the Front-End project]()**| In this video we are going to forking/cloning the Front-End starter project!|
65
+
|**[Vídeo 23 - Structuring the Back-End project]()**| In this video we are going to structuring the BackEnd project using Azure Functions.|
66
+
|**[Vídeo 24 - Creating Database Server]()**| In this video we are going to create our Database Server using the Azure Portal. |
67
+
|**[Vídeo 25 - Creating Database]()**| Now we already created our Database server, it's time to create our Employee Database using Azure Portal. |
68
+
|**[Vídeo 26 - Creating Shadow Database]()**| In this video we are going to create shadow database using Azure Portal. |
69
+
|**[Vídeo 27 - Installing Packages]()**| In this video we are going to install all the necessary packages for our project! |
70
+
|**[Vídeo 28 - Modeling Database with Prisma]()**| In this video we are going to learn how to initialize and modeling our database using Prisma. |
71
+
|**[Vídeo 29 - Using Prisma Migrations]()**| In this video we are going to understand how Prisma migrations works! |
72
+
|**[Vídeo 30 - Using Prisma Studio]()**| In this video we are going to take a look how Prisma Studio works and use it to manipulate our database. |
73
+
|**[Vídeo 31 - Developing 'CreateEmployee']()**| In this video we're going to create our first function: Create Employee using Prisma & Azure Functions |
74
+
|**[Vídeo 32 - Developing 'GetEmployees']()**| In this video we are going to develop the functionality to list all the employees using Azure Functions. |
75
+
|**[Vídeo 33 - Developing 'GetEmployee']()**| In this video we are going to develop the functionality to return an employee by Id using Azure Functions. |
76
+
|**[Vídeo 34 - Developing 'UpdateEmployee']()**| In this video we are going to develop the functionality to update an employee by Id using Azure Functions. |
77
+
|**[Vídeo 35 - Developing 'DeleteEmployee']()**| In this video we are going to develop the functionality to delete an employee by Id using Azure Functions. |
78
+
|**[Vídeo 36 - Deploying the App with ASWA]()**| In this video we are going to deploy our application using Azure Static Web Apps with GitHub Actions Integration! |
79
+
|**[Vídeo 37 - Next Steps]()**| In this video we are going to see the next steps that you should see after this course! |
79
80
80
81
## 🔥 How to run the application locally?
81
82
@@ -85,15 +86,15 @@ This repo uses [Development Containers](https://code.visualstudio.com/docs/remot
85
86
86
87
To execute locally this project you will need to follow the steps bellow:
87
88
88
-
1. First you need to go to the folder: `client` and run the command:
89
+
1. First go to the folder: `client` and run the command:
89
90
90
91
```bash
91
-
>npm install
92
+
npm install
92
93
```
93
94
2. After to install all the Node.Js packages, now you can execute the command:
94
95
95
96
```bash
96
-
>npm run serve
97
+
npm run serve
97
98
```
98
99
99
100
3. Now, open your browser on `http://localhost:8080/`. Thanks to the configuration defined in `vue.config.js` all requests will be automatically proxied to the local Azure Functions host. You can learn more about the integrated proxy in vue client here: [VUE CLI Configuration Reference](https://cli.vuejs.org/config/#devserver)
@@ -122,7 +123,7 @@ Unless you have changed the database name, login and password in the Dockerfile
122
123
123
124
If you want to test Azure SQL database, to make sure everything will work perfectly even when deployed on Azure, you need to create an Azure SQL database before.
124
125
125
-
The are different ways you can create an Azure SQL Database. Using the Portal, using AZ CLI or Powershell. The easiest is using the Portal, and you can have see complete walk-through in this recording: [Demo: Deploy Azure SQL Database | Azure SQL for beginners (Ep. 14)](https://www.youtube.com/watch?v=wiBC4OxFX60&list=PLlrxD0HtieHi5c9-i_Dnxw9vxBY-TqaeN&index=21). If you prefer reading instead of watching, here a complete quickstart guide available, with detailed steps for each option: [Quickstart: Create an Azure SQL Database single database](https://docs.microsoft.com/en-us/azure/azure-sql/database/single-database-create-quickstart?view=azuresql&tabs=azure-portal). If you want something more concise and direct, you can to follow the simple 6-steps guide available here: [Create and connect to an Azure SQL DB](https://dev.to/azure/create-and-connect-to-an-azure-sql-db-9k0).
126
+
The are different ways you can create an Azure SQL Database. Using the Portal, using AZ CLI or Powershell. The easiest is using the Portal, and you can have see complete walk-through in this recording: **[Demo: Deploy Azure SQL Database | Azure SQL for beginners (Ep. 14)](https://www.youtube.com/watch?v=wiBC4OxFX60&list=PLlrxD0HtieHi5c9-i_Dnxw9vxBY-TqaeN&index=21)**. If you prefer reading instead of watching, here a complete quickstart guide available, with detailed steps for each option: **[Quickstart: Create an Azure SQL Database single database](https://docs.microsoft.com/en-us/azure/azure-sql/database/single-database-create-quickstart?view=azuresql&tabs=azure-portal)**. If you want something more concise and direct, you can to follow the simple 6-steps guide available here: **[Create and connect to an Azure SQL DB](https://dev.to/azure/create-and-connect-to-an-azure-sql-db-9k0)**.
0 commit comments