-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #170 from Azure/ipam-vite
Azure IPAM 2.0 Updates
- Loading branch information
Showing
96 changed files
with
5,888 additions
and
29,755 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
node_modules | ||
build | ||
dist | ||
.dockerignore | ||
Dockerfile | ||
Dockerfile.prod | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from fastapi import FastAPI, Request, HTTPException, Header | ||
from fastapi.responses import JSONResponse, RedirectResponse, FileResponse | ||
from fastapi.responses import JSONResponse, FileResponse | ||
from fastapi.staticfiles import StaticFiles | ||
from fastapi.exceptions import HTTPException as StarletteHTTPException | ||
from fastapi.middleware.cors import CORSMiddleware | ||
|
@@ -46,15 +46,15 @@ | |
app = FastAPI( | ||
title = "Azure IPAM", | ||
description = description, | ||
version = "1.0.0", | ||
version = "2.0.0", | ||
contact = { | ||
"name": "Azure IPAM Team", | ||
"url": "https://github.com/azure/ipam", | ||
"email": "[email protected]", | ||
}, | ||
openapi_url = "/api/openapi.json", | ||
docs_url = "/api/docs", | ||
redoc_url = "/api/docs" | ||
redoc_url = "/api/redoc" | ||
) | ||
|
||
app.logger = logger | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.