Skip to content

Commit 499e404

Browse files
authored
Add video
1 parent edd8833 commit 499e404

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,29 @@ which makes it easier to develop apps locally, deploy them to Azure, and monitor
2424

2525
### Local development
2626

27-
This project has devcontainer support, so you can open it in Github Codespaces or local VS Code with the Dev Containers extension. If you're unable to open the devcontainer,
28-
then it's best to first [create a Python virtual environment](https://docs.python.org/3/tutorial/venv.html#creating-virtual-environments) and activate that.
27+
This project has devcontainer support, so you can open it in Github Codespaces or local VS Code with the Dev Containers extension.
2928

30-
Install the requirements:
29+
🎥 [Watch me run the app in Github Codespaces.](https://www.youtube.com/watch?v=r6Hnp9RXUpY)
30+
31+
Steps for running the server:
32+
33+
1. (Optional) If you're unable to open the devcontainer, [create a Python virtual environment](https://docs.python.org/3/tutorial/venv.html#creating-virtual-environments) and activate that.
34+
35+
2. Install the requirements:
3136

3237
```shell
3338
pip install -r requirements.txt
3439
```
3540

36-
Create an `.env` file using `.env.sample` as a guide. Set the value of `DBNAME` to the name of an existing database in your local PostgreSQL instance. Set the values of `DBHOST`, `DBUSER`, and `DBPASS` as appropriate for your local PostgreSQL instance.
41+
3. Create an `.env` file using `.env.sample` as a guide. Set the value of `DBNAME` to the name of an existing database in your local PostgreSQL instance. Set the values of `DBHOST`, `DBUSER`, and `DBPASS` as appropriate for your local PostgreSQL instance.
3742

38-
Run the migrations:
43+
4. Run the migrations:
3944

4045
```shell
4146
flask db upgrade
4247
```
4348

44-
Run the local server: (or use VS Code "Run" button and select "Run server")
49+
5. Run the local server: (or use VS Code "Run" button and select "Run server")
4550

4651
```shell
4752
flask run
@@ -51,7 +56,7 @@ flask run
5156

5257
This repo is set up for deployment on Azure App Service (w/PostGreSQL server) using the configuration files in the `infra` folder.
5358

54-
🎥 Watch me deploy and re-deploy the app in [this 5 minute video](https://www.youtube.com/watch?v=r6Hnp9RXUpY).
59+
🎥 [Watch me deploy and re-deploy the app.](https://www.youtube.com/watch?v=r6Hnp9RXUpY)
5560

5661
Steps for deployment:
5762

@@ -96,4 +101,4 @@ azd monitor --overview
96101

97102
## Getting help
98103

99-
If you're working with this project and running into issues, please post in [Discussions](/discussions).
104+
If you're working with this project and running into issues, please post in [Discussions](/discussions).

0 commit comments

Comments
 (0)