-
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: docker hub integration * feat: prepare 1.5.0 * feat: write changelog Co-authored-by: Corentin <corentin.filoche@swan.io>
- Loading branch information
1 parent
1a0f381
commit d6c0ac3
Showing
25 changed files
with
1,662 additions
and
738 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 |
---|---|---|
|
@@ -13,5 +13,5 @@ | |
!static | ||
!store | ||
!.babelrc | ||
!nuxt.config.js | ||
!nuxt.config.ts | ||
!tailwind.config.js |
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,2 +1,4 @@ | ||
export AWS_ACCESS_KEY= | ||
export AWS_SECRET_KEY= | ||
export DOCKERHUB_TOKEN= | ||
export GITHUB_TOKEN= |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// https://github.com/nuxt/framework/discussions/2815#discussioncomment-2050408 | ||
|
||
{ | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:vue/essential", | ||
"plugin:@typescript-eslint/recommended", | ||
"@nuxtjs/eslint-config-typescript" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"parser": "@typescript-eslint/parser", | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"vue", | ||
"@typescript-eslint" | ||
], | ||
"rules": {} | ||
} |
This file was deleted.
Oops, something went wrong.
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,3 +1,3 @@ | ||
docker-build: | ||
docker buildx build --platform linux/amd64,linux/arm64 -t tchoupinax/fuzzy-engine:latest . --push | ||
docker buildx build --platform linux/amd64,linux/arm64 -t tchoupinax/fuzzy-engine:$(cat package.json | jq '.version' -r) . --push | ||
docker buildx build --platform linux/amd64,linux/arm64 -t tchoupinax/fuzzy-engine:v$(cat package.json | jq '.version' -r) . --push |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { defineNuxtConfig } from "@nuxt/bridge"; | ||
|
||
export default defineNuxtConfig({ | ||
target: "server", | ||
head: { | ||
title: "Docker registry UI", | ||
meta: [ | ||
{ charset: "utf-8" }, | ||
{ name: "viewport", content: "width=device-width, initial-scale=1" }, | ||
{ | ||
hid: "description", | ||
name: "description", | ||
content: process.env.npm_package_description || "" | ||
} | ||
], | ||
link: [{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" }] | ||
}, | ||
loading: { color: "#fff" }, | ||
css: [], | ||
plugins: [ | ||
"~/plugins/clipboard.client.ts", | ||
"~/plugins/notifications.client.ts" | ||
], | ||
buildModules: ["@nuxtjs/eslint-module", "@nuxtjs/tailwindcss"], | ||
modules: ["@nuxtjs/axios", "@nuxtjs/pwa"], | ||
axios: { | ||
// NOTE Do not send proxy headers, if the UI is behind a reverse proxy with basic auth | ||
// it will override authorization header and broke everything | ||
proxyHeaders: false, | ||
credentials: true | ||
} | ||
}); |
Oops, something went wrong.