This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: ovh for dev, preprod * chore: lock * lint * lint
- Loading branch information
Julien Bouquillon
authored
Jul 26, 2023
1 parent
e34d57b
commit 917933e
Showing
5 changed files
with
2,548 additions
and
4,058 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,9 +1,14 @@ | ||
projectName: archifiltre | ||
ciNamespace: ci-archifiltre | ||
|
||
dependencies: | ||
fabrique: | ||
import: SocialGouv/kontinuous/plugins/fabrique | ||
|
||
extends: | ||
- name: ovh | ||
ifEnv: [dev,preprod] | ||
- name: buildkit-service | ||
ifEnv: [dev,preprod] | ||
|
||
environmentPatterns: | ||
# prod: main | ||
preprod: dev |
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,13 +1,13 @@ | ||
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction | ||
import type { NextApiRequest, NextApiResponse } from 'next' | ||
import type { NextApiRequest, NextApiResponse } from 'next'; | ||
|
||
type Data = { | ||
name: string | ||
} | ||
name: string; | ||
}; | ||
|
||
export default function handler( | ||
req: NextApiRequest, | ||
res: NextApiResponse<Data> | ||
req: NextApiRequest, | ||
res: NextApiResponse<Data>, | ||
) { | ||
res.status(200).json({ name: 'John Doe' }) | ||
res.status(200).json({ name: 'John Doe' }); | ||
} |
Oops, something went wrong.