Skip to content

File tree

19 files changed

+47
-46
lines changed

19 files changed

+47
-46
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
name: continuous integration - temporary
1+
name: continuous integration - flights
22

33
concurrency:
4-
group: temporary
4+
group: flights
55
cancel-in-progress: true
66

77
on:
@@ -45,7 +45,7 @@ jobs:
4545
id: meta
4646
uses: docker/metadata-action@v4
4747
with:
48-
images: ghcr.io/amplication/example-kubernetes-deployment/temporary
48+
images: ghcr.io/amplication/example-kubernetes-deployment/flights
4949
flavor: latest=true
5050
tags: |
5151
type=sha,prefix=sha-

apps/temporary-admin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@temporary/admin",
2+
"name": "@flights/admin",
33
"private": true,
44
"dependencies": {
55
"@apollo/client": "3.6.9",

apps/temporary-admin/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
work correctly both with client-side routing and a non-root public URL.
2222
Learn how to configure a non-root public URL by running `npm run build`.
2323
-->
24-
<title>temporary</title>
24+
<title>flights</title>
2525
</head>
2626
<body>
2727
<noscript>You need to enable JavaScript to run this app.</noscript>

apps/temporary-admin/public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "temporary",
3-
"name": "temporary",
2+
"short_name": "flights",
3+
"name": "flights",
44
"icons": [
55
{
66
"src": "favicon.ico",

apps/temporary-admin/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const App = (): React.ReactElement => {
2828
return (
2929
<div className="App">
3030
<Admin
31-
title={"temporary"}
31+
title={"flights"}
3232
dataProvider={dataProvider}
3333
authProvider={jwtAuthProvider}
3434
theme={theme}

apps/temporary/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@temporary/server",
2+
"name": "@flights/server",
33
"private": true,
44
"scripts": {
55
"start": "nest start",

apps/temporary/src/swagger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { DocumentBuilder, SwaggerCustomOptions } from "@nestjs/swagger";
33
export const swaggerPath = "api";
44

55
export const swaggerDocumentOptions = new DocumentBuilder()
6-
.setTitle("temporary")
6+
.setTitle("flights")
77
.setDescription(
88
'\n\n## Congratulations! Your service resource is ready.\n \nPlease note that all endpoints are secured with JWT Bearer authentication.\nBy default, your service resource comes with one user with the username "admin" and password "admin".\nLearn more in [our docs](https://docs.amplication.com)'
99
)
@@ -16,5 +16,5 @@ export const swaggerSetupOptions: SwaggerCustomOptions = {
1616
},
1717
customCssUrl: "../swagger/swagger.css",
1818
customfavIcon: "../swagger/favicon.png",
19-
customSiteTitle: "temporary",
19+
customSiteTitle: "flights",
2020
};

apps/temporary/src/swagger/swagger.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ body {
9393
background-size: contain;
9494
}
9595

96+
.swagger-ui .topbar-wrapper svg,
9697
.swagger-ui .topbar-wrapper img {
9798
display: none;
9899
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
2-
name: temporary
3-
description: A Helm chart for the temporary service generated with Amplication
2+
name: flights
3+
description: A Helm chart for the flights service generated with Amplication
44

55
# A chart can be either an 'application' or a 'library' chart. Application charts are a collection
66
# of templates that can be packaged into versioned archives to be deployed.

0 commit comments

Comments
 (0)