Skip to content

Commit 9ec6181

Browse files
authored
📝 Update links from tiangolo repo to fastapi org repo (fastapi#1285)
1 parent 1f20db1 commit 9ec6181

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/ISSUE_TEMPLATE/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ contact_links:
44
about: Please report security vulnerabilities to [email protected]
55
- name: Question or Problem
66
about: Ask a question or ask about a problem in GitHub Discussions.
7-
url: https://github.com/tiangolo/full-stack-fastapi-template/discussions/categories/questions
7+
url: https://github.com/fastapi/full-stack-fastapi-template/discussions/categories/questions
88
- name: Feature Request
99
about: To suggest an idea or ask about a feature, please start with a question saying what you would like to achieve. There might be a way to do it already.
10-
url: https://github.com/tiangolo/full-stack-fastapi-template/discussions/categories/questions
10+
url: https://github.com/fastapi/full-stack-fastapi-template/discussions/categories/questions

.github/workflows/deploy-production.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
deploy:
1010
# Do not deploy in the main repository, only in user projects
11-
if: github.repository_owner != 'tiangolo'
11+
if: github.repository_owner != 'fastapi'
1212
runs-on:
1313
- self-hosted
1414
- production

.github/workflows/deploy-staging.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
deploy:
1010
# Do not deploy in the main repository, only in user projects
11-
if: github.repository_owner != 'tiangolo'
11+
if: github.repository_owner != 'fastapi'
1212
runs-on:
1313
- self-hosted
1414
- staging

README.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Full Stack FastAPI Template
22

3-
<a href="https://github.com/tiangolo/full-stack-fastapi-template/actions?query=workflow%3ATest" target="_blank"><img src="https://github.com/tiangolo/full-stack-fastapi-template/workflows/Test/badge.svg" alt="Test"></a>
4-
<a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/tiangolo/full-stack-fastapi-template" target="_blank"><img src="https://coverage-badge.samuelcolvin.workers.dev/tiangolo/full-stack-fastapi-template.svg" alt="Coverage"></a>
3+
<a href="https://github.com/fastapi/full-stack-fastapi-template/actions?query=workflow%3ATest" target="_blank"><img src="https://github.com/fastapi/full-stack-fastapi-template/workflows/Test/badge.svg" alt="Test"></a>
4+
<a href="https://coverage-badge.samuelcolvin.workers.dev/redirect/fastapi/full-stack-fastapi-template" target="_blank"><img src="https://coverage-badge.samuelcolvin.workers.dev/fastapi/full-stack-fastapi-template.svg" alt="Coverage"></a>
55

66
## Technology Stack and Features
77

@@ -26,31 +26,31 @@
2626

2727
### Dashboard Login
2828

29-
[![API docs](img/login.png)](https://github.com/tiangolo/full-stack-fastapi-template)
29+
[![API docs](img/login.png)](https://github.com/fastapi/full-stack-fastapi-template)
3030

3131
### Dashboard - Admin
3232

33-
[![API docs](img/dashboard.png)](https://github.com/tiangolo/full-stack-fastapi-template)
33+
[![API docs](img/dashboard.png)](https://github.com/fastapi/full-stack-fastapi-template)
3434

3535
### Dashboard - Create User
3636

37-
[![API docs](img/dashboard-create.png)](https://github.com/tiangolo/full-stack-fastapi-template)
37+
[![API docs](img/dashboard-create.png)](https://github.com/fastapi/full-stack-fastapi-template)
3838

3939
### Dashboard - Items
4040

41-
[![API docs](img/dashboard-items.png)](https://github.com/tiangolo/full-stack-fastapi-template)
41+
[![API docs](img/dashboard-items.png)](https://github.com/fastapi/full-stack-fastapi-template)
4242

4343
### Dashboard - User Settings
4444

45-
[![API docs](img/dashboard-user-settings.png)](https://github.com/tiangolo/full-stack-fastapi-template)
45+
[![API docs](img/dashboard-user-settings.png)](https://github.com/fastapi/full-stack-fastapi-template)
4646

4747
### Dashboard - Dark Mode
4848

49-
[![API docs](img/dashboard-dark.png)](https://github.com/tiangolo/full-stack-fastapi-template)
49+
[![API docs](img/dashboard-dark.png)](https://github.com/fastapi/full-stack-fastapi-template)
5050

5151
### Interactive API Documentation
5252

53-
[![API docs](img/docs.png)](https://github.com/tiangolo/full-stack-fastapi-template)
53+
[![API docs](img/docs.png)](https://github.com/fastapi/full-stack-fastapi-template)
5454

5555
## How To Use It
5656

@@ -68,7 +68,7 @@ But you can do the following:
6868
- Clone this repository manually, set the name with the name of the project you want to use, for example `my-full-stack`:
6969

7070
```bash
71-
git clone [email protected]:tiangolo/full-stack-fastapi-template.git my-full-stack
71+
git clone [email protected]:fastapi/full-stack-fastapi-template.git my-full-stack
7272
```
7373

7474
- Enter into the new directory:
@@ -86,7 +86,7 @@ git remote set-url origin [email protected]:octocat/my-full-stack.git
8686
- Add this repo as another "remote" to allow you to get updates later:
8787

8888
```bash
89-
git remote add upstream [email protected]:tiangolo/full-stack-fastapi-template.git
89+
git remote add upstream [email protected]:fastapi/full-stack-fastapi-template.git
9090
```
9191

9292
- Push the code to your new repository:
@@ -106,8 +106,8 @@ git remote -v
106106

107107
origin [email protected]:octocat/my-full-stack.git (fetch)
108108
origin [email protected]:octocat/my-full-stack.git (push)
109-
upstream [email protected]:tiangolo/full-stack-fastapi-template.git (fetch)
110-
upstream [email protected]:tiangolo/full-stack-fastapi-template.git (push)
109+
upstream [email protected]:fastapi/full-stack-fastapi-template.git (fetch)
110+
upstream [email protected]:fastapi/full-stack-fastapi-template.git (push)
111111
```
112112

113113
- Pull the latest changes without merging:
@@ -181,16 +181,16 @@ Decide a name for your new project's directory, you will use it below. For examp
181181
Go to the directory that will be the parent of your project, and run the command with your project's name:
182182

183183
```bash
184-
copier copy https://github.com/tiangolo/full-stack-fastapi-template my-awesome-project --trust
184+
copier copy https://github.com/fastapi/full-stack-fastapi-template my-awesome-project --trust
185185
```
186186

187187
If you have `pipx` and you didn't install `copier`, you can run it directly:
188188

189189
```bash
190-
pipx run copier copy https://github.com/tiangolo/full-stack-fastapi-template my-awesome-project --trust
190+
pipx run copier copy https://github.com/fastapi/full-stack-fastapi-template my-awesome-project --trust
191191
```
192192

193-
**Note** the `--trust` option is necessary to be able to execute a [post-creation script](https://github.com/tiangolo/full-stack-fastapi-template/blob/master/.copier/update_dotenv.py) that updates your `.env` files.
193+
**Note** the `--trust` option is necessary to be able to execute a [post-creation script](https://github.com/fastapi/full-stack-fastapi-template/blob/master/.copier/update_dotenv.py) that updates your `.env` files.
194194

195195
### Input Variables
196196

backend/app/core/db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# make sure all SQLModel models are imported (app.models) before initializing DB
1111
# otherwise, SQLModel might fail to initialize relationships properly
12-
# for more details: https://github.com/tiangolo/full-stack-fastapi-template/issues/28
12+
# for more details: https://github.com/fastapi/full-stack-fastapi-template/issues/28
1313

1414

1515
def init_db(session: Session) -> None:

0 commit comments

Comments
 (0)