mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-14 02:54:44 +00:00
Compare commits
3 Commits
0.2.1
...
fix-fronte
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff901a3ad8 | ||
|
|
f934339288 | ||
|
|
9c23d69f36 |
@@ -146,7 +146,11 @@ After using this generator, your new project (the directory created) will contai
|
||||
|
||||
## Release Notes
|
||||
|
||||
### Next
|
||||
### Next release
|
||||
|
||||
### 0.2.1
|
||||
|
||||
* Fix documentation for *path operation* to get user by ID. <a href="https://github.com/tiangolo/fastapi/pull/97" target="_blank">PR #97</a> by <a href="https://github.com/mpclarkson" target="_blank">@mpclarkson</a>.
|
||||
|
||||
* Set `/start-reload.sh` as a command override for development by default.
|
||||
|
||||
|
||||
@@ -25,3 +25,4 @@ FROM nginx:1.15
|
||||
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
|
||||
|
||||
COPY --from=build-stage /nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
location /api {
|
||||
return 404;
|
||||
}
|
||||
location /docs {
|
||||
return 404;
|
||||
}
|
||||
location /redoc {
|
||||
return 404;
|
||||
}
|
||||
Reference in New Issue
Block a user