Skip to content
Snippets Groups Projects
Commit 8ae9a06a authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

try sed in ci

parent 8426b36e
No related branches found
No related tags found
2 merge requests!131Merge relevant Abstract and references,!123Resolve "Wizzard to create db filters"
Pipeline #116962 failed
This commit is part of merge request !123. Comments created here will be created in the context of that merge request.
...@@ -322,6 +322,9 @@ build:dev:wiki: ...@@ -322,6 +322,9 @@ build:dev:wiki:
# - get-pfam # - get-pfam
variables: variables:
BASE_URL: /wiki/ BASE_URL: /wiki/
before_script:
- *docker-login
- sed -i "s/MEILISEARCH_API_KEY/${$MEILI_API_KEY}/g" nuxt.config.ts
rules: rules:
- if: $CI_COMMIT_BRANCH != "main" - if: $CI_COMMIT_BRANCH != "main"
......
...@@ -6,6 +6,7 @@ export default defineNuxtConfig({ ...@@ -6,6 +6,7 @@ export default defineNuxtConfig({
'vuetify-nuxt-module', 'vuetify-nuxt-module',
'@vueuse/nuxt', '@vueuse/nuxt',
'@pinia/nuxt', '@pinia/nuxt',
'nuxt-meilisearch',
// '@unocss/nuxt', // '@unocss/nuxt',
], ],
content: { content: {
...@@ -32,6 +33,12 @@ export default defineNuxtConfig({ ...@@ -32,6 +33,12 @@ export default defineNuxtConfig({
} }
}, },
meilisearch: {
hostUrl: 'MEILISEARCH_HOST.example.com',
searchApiKey: 'MEILISEARCH_API_KEY',
// adminApiKey: '<your_secret_key>', // optional
serverSideUsage: false // default false
},
devtools: { devtools: {
enabled: false enabled: false
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment