Skip to content

Commit a1c35bb

Browse files
committed
style: mdformat fixes
1 parent 090598b commit a1c35bb

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE/update-table.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Current name in code | Updated Name | Updated Type (may already be this type)
2525

2626
- [ ] Add the following items in the code
2727
Name | Type
28-
-- | --
28+
-- | --
2929
[Replace with ADD TABLE]
3030
- [ ] Write a test for the new relationships this model will have with other models (e.g., creating a user and assigning them a set of permissions on a project) if any.
3131
- [ ] Update API end point
@@ -41,7 +41,7 @@ Name | Type
4141
- 1.01.01 [/app/core/models.py](https://github.com/hackforla/peopledepot/blob/main/app/core/models.py)
4242
- 1.01.02 [/app/core/admin.py](https://github.com/hackforla/peopledepot/blob/main/app/core/admin.py)
4343
- 1.01.03 [/app/core/api/serializers.py](https://github.com/hackforla/peopledepot/blob/main/app/core/api/serializers.py)
44-
- 1.01.04
44+
- 1.01.04
4545
- 1.02 [People Depot Resources wiki page](https://github.com/hackforla/peopledepot/wiki/Resources-and-Links) for links
4646
- ERD
4747
- Table and Field Definitions

.github/pull_request_template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Fixes #replace_this_text_with_the_issue_number
1212
-
1313
-
1414

15-
### Screenshots of Proposed Changes Of The Website (if any, please do not screen shot code changes)
15+
### Screenshots of Proposed Changes Of The Website (if any, please do not screen shot code changes)
1616

1717
<!-- Note, if your images are too big, use the <img src="" width="" length="" /> syntax instead of ![image](link) to format the images -->
1818

docs/contributing/howto/run-local.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Run backend in venv
22

33
If you have a requirement to run on your local machine or you are unable to get it to work on
4-
Docker, do the following steps. WARNING: If you run into issues you will get limited support.
4+
Docker, do the following steps. WARNING: If you run into issues you will get limited support.
55

66
Run these commands from the `app` directory:
77

88
1. Copy `.env.docker-example` to `.env.local`
9-
1. Inspect `.env.local` and change values as appropriate. The file includes instructions on how to use local `postgres` and `sqlite` for the database. `sqlite` has no set up. It uses a file `db.sqlite3`. If it is not there, it automatically creates it.
10-
1. **Mac only**: If you have a Mac, the python command may not be found and scripts will fail. Try to run python using the "python" command from the terminal. If you get an error that the python command is
9+
1. Inspect `.env.local` and change values as appropriate. The file includes instructions on how to use local `postgres` and `sqlite` for the database. `sqlite` has no set up. It uses a file `db.sqlite3`. If it is not there, it automatically creates it.
10+
1. **Mac only**: If you have a Mac, the python command may not be found and scripts will fail. Try to run python using the "python" command from the terminal. If you get an error that the python command is
1111
not found, type: `alias python="python3"`
1212
1. Run these commands from the terminal in the project root.
1313

docs/contributing/tools/docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN \
5050
pip install -r requirements.txt
5151
```
5252

53-
For pip, the files are by default stored in `/root/.cache/pip`. [Pip caching docs](https://pip.pypa.io/en/stable/topics/caching/)
53+
For pip, the files are by default stored in `/root/.cache/pip`. [Pip caching docs](https://pip.pypa.io/en/stable/topics/caching/)
5454

5555
For apk, the cache directory is `/var/cache/apk/`. [APK wiki on local cache](https://wiki.alpinelinux.org/wiki/Local_APK_cache)
5656

docs/howto/authenticate_cognito.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ Prerequisites:
1010

1111
Steps:
1212

13-
1. Login (or register first then login) to a cognito account [here](https://hackforla-vrms-dev.auth.us-west-2.amazoncognito.com/login?client_id=3e3bi1ct2ks9rcktrde8v60v3u&response_type=token&scope=openid&redirect_uri=http://localhost:8000/admin). Do not worry if you see error messages - you will be using the url.
13+
1. Login (or register first then login) to a cognito account [here](https://hackforla-vrms-dev.auth.us-west-2.amazoncognito.com/login?client_id=3e3bi1ct2ks9rcktrde8v60v3u&response_type=token&scope=openid&redirect_uri=http://localhost:8000/admin). Do not worry if you see error messages - you will be using the url.
1414

1515
[<img src="https://user-images.githubusercontent.com/1160105/184449364-e3bba6e9-ced5-498f-a0e6-0c93c8a036fb.png" width="500" />](https://user-images.githubusercontent.com/1160105/184449364-e3bba6e9-ced5-498f-a0e6-0c93c8a036fb.png)
1616

17-
1. Copy the URL when it redirects. **Note:** Instead of the screen below, the screen may display an error message. You can ignore any error messages.
17+
1. Copy the URL when it redirects. **Note:** Instead of the screen below, the screen may display an error message. You can ignore any error messages.
1818

1919
[<img src="https://user-images.githubusercontent.com/1160105/184449368-f16b19de-9372-436c-b65d-c5afadbcbc1a.png" width="500" />](https://user-images.githubusercontent.com/1160105/184449368-f16b19de-9372-436c-b65d-c5afadbcbc1a.png).
2020

@@ -25,7 +25,7 @@ Steps:
2525

2626
[<img src="https://user-images.githubusercontent.com/1160105/184449537-2a9570a5-6361-48ae-b348-506244d592ac.png" width="500" />](https://user-images.githubusercontent.com/1160105/184449537-2a9570a5-6361-48ae-b348-506244d592ac.png)
2727

28-
1. Open [ModHeader](https://modheader.com/modheader/download). If the icon is hidden, click on the Puzzle icon in the upper right of the browser to see it.
28+
1. Open [ModHeader](https://modheader.com/modheader/download). If the icon is hidden, click on the Puzzle icon in the upper right of the browser to see it.
2929

3030
1. Type the word Bearer and paste the token into [ModHeader](https://docs.modheader.com/using-modheader/introduction) Authorization: Bearer \<access_token>
3131

0 commit comments

Comments
 (0)