-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use har for audio tests to prevent provider requests and flakiness Convert ui cookies for ease of use Move analytics tests from unit tests to e2e tests Disable buttons until hydrated Make audio tapes smaller Update tests Use har for audio tests to prevent provider requests and flakiness Convert ui cookies for ease of use Move analytics tests from unit tests to e2e tests Disable buttons until hydrated Remove everything but the homepage and content pages Vendor in SVG sprites Remove patch Add search, media and related-media stores Add search pages with search functionality Add single result pages Re-add tests; fix unit tests; disable buttons until hydrated Fix invalid locale keys Refactor search page and fetching Fix localePath warning Add additional search views Get localePath from useNuxtApp Add healthcheck and robots server routes Add photos redirect Add sitemap Add simple sentry integration Proxy API calls Tests Add a missing tapes and add peaks=true to related audio tapes Add peaks=true to related tapes Reuse the same audio for seo Add server-prepare for initial provider loading Fix e2e route mocking Fix collection test Fix provider unit test Handle case when there are no providers Fix ui cookie overwriting Fix Tab border when focused Fix Waveform on box layout Fix Sources table sorting Fix content report POST request Fix global audio player on navigation Add link to source page to the sources table Update nuxt prepare script and add logging Remove aria-pressed from buttons when not set Refactor media store to make easier to test Add coverage to unit tests Add more media store unit tests Extract api-token from the api route Add api token tests Remove duplicate tags Use script setup for pages fetching data Improve VSkipToContentButton and add it to VCollectionPage Error component: add modal target and script setup Unify error handling Update sentry and env settings Remove unnecessary await from VSvg Remove provider-init plugin Set lazy to true in useAsyncData Remove error watch from index pages Remove VFetchingError Use script setup and remove useHead from pages Remove head and localeHead from app, error and single result Remove sentry Use script setup; simplify VLoadMore; remove fetchState Remove async from watchers Convert headers to script setup Replace store getters with actions Remove page title Update @nuxtjs/i18n to edge version Update dependencies Move search handling to search.vue Remove single-result middleware Use script setup and t from useNuxtApp.$i18n layout Replace axios with ofetch Signed-off-by: Olga Bulat <[email protected]> Update prettier; types; analytics plugin Signed-off-by: Olga Bulat <[email protected]> Use axios for fetching search requests Signed-off-by: Olga Bulat <[email protected]>
- Loading branch information
Showing
393 changed files
with
11,520 additions
and
20,626 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
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,13 @@ | ||
#API_URL=http://127.17.0.1:8000/ | ||
#API_CLIENT_ID="" | ||
#API_CLIENT_SECRET="" | ||
#NUXT_PUBLIC_API_URL=http://127.17.0.1:8000/ # local dev API | ||
#NUXT_PUBLIC_API_URL=http://localhost:49153/ # talkback proxy | ||
#NUXT_PUBLIC_API_URL=https://api.openverse.engineering/ # prod API | ||
#NUXT_API_CLIENT_ID="" | ||
#NUXT_API_CLIENT_SECRET="" | ||
NUXT_PUBLIC_SAVED_SEARCH_COUNT=4 | ||
NUXT_PUBLIC_PROVIDER_UPDATE_FREQUENCY=3600000# 1 hour | ||
NUXT_PUBLIC_PLAUSIBLE_DOMAIN="openverse.org" #localhost | ||
NUXT_PUBLIC_PLAUSIBLE_API_HOST="https://openverse.org" #http://localhost:50290 | ||
NUXT_PUBLIC_SENTRY_DSN="https://[email protected]/5799642" | ||
NUXT_PUBLIC_SENTRY_ENVIRONMENT="local" | ||
NUXT_PUBLIC_SENTRY_RELEASE="" | ||
PORT=8443 |
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 was deleted.
Oops, something went wrong.
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 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 |
---|---|---|
|
@@ -22,7 +22,7 @@ WORKDIR /home/node/ | |
|
||
# Copy monorepo mocking files into `/home/node`, which pretends to be the monorepo root. | ||
# Note: these files must be manually un-ignored in the root .dockerignore | ||
COPY --from=repo_root --chown=node:node .npmrc .pnpmfile.cjs pnpm-lock.yaml tsconfig.base.json ./ | ||
COPY --from=repo_root --chown=node:node .npmrc .pnpmfile.cjs pnpm-lock.yaml ./ | ||
RUN echo '{"packages":["frontend/"]}' > pnpm-workspace.yaml | ||
|
||
# Copy the `frontend/` directory into `/home/node/frontend`, as a package in the monorepo. | ||
|
@@ -41,9 +41,10 @@ RUN pnpm install | |
# disable telemetry when building the app | ||
ENV NUXT_TELEMETRY_DISABLED=1 | ||
ENV NODE_ENV=production | ||
ENV SENTRY_DSN=https://[email protected]/5799642 | ||
ENV NUXT_PUBLIC_SENTRY_DSN=https://[email protected]/5799642 | ||
|
||
ARG API_URL | ||
ARG API_URL=https://api.openverse.engineering/ | ||
ENV NUXT_PUBLIC_API_URL=$API_URL | ||
|
||
RUN pnpm build:only | ||
|
||
|
@@ -68,7 +69,9 @@ COPY --from=builder --chown=node:node /home/node/frontend ./frontend/ | |
WORKDIR /home/node/frontend/ | ||
|
||
ARG SEMANTIC_VERSION | ||
ENV SENTRY_RELEASE=$SEMANTIC_VERSION | ||
ARG DEPLOYMENT_ENV=production | ||
ENV NUXT_PUBLIC_SENTRY_RELEASE=$SEMANTIC_VERSION | ||
ENV NUXT_PUBLIC_SENTRY_ENVIRONMENT=$DEPLOYMENT_ENV | ||
|
||
# set app serving to permissive / assigned | ||
ENV NUXT_HOST=0.0.0.0 | ||
|
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.