Skip to content

Commit

Permalink
removed redundant files, brought back lost changes in config.ts #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyriakos Akriotis committed Jul 3, 2024
1 parent 059bdd9 commit b6720e7
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 263 deletions.
46 changes: 0 additions & 46 deletions .devcontainer/devcontainer.json

This file was deleted.

47 changes: 0 additions & 47 deletions .devcontainer/docker-compose.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .devcontainer/docsearch-config.json

This file was deleted.

51 changes: 0 additions & 51 deletions .devcontainer/docusaurus-2.json

This file was deleted.

13 changes: 0 additions & 13 deletions .devcontainer/nginx-default.conf

This file was deleted.

11 changes: 0 additions & 11 deletions .devcontainer/post-create-script.sh

This file was deleted.

40 changes: 0 additions & 40 deletions Dockerfile2

This file was deleted.

14 changes: 0 additions & 14 deletions docker-compose.debug.yml

This file was deleted.

12 changes: 0 additions & 12 deletions docker-compose.yml

This file was deleted.

18 changes: 9 additions & 9 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import type { Config } from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';

const config: Config = {
title: 'Architecture Center docs-next',
title: 'Architecture Center docs-next.beta.5',
tagline: 'Best Practices & Blueprints',
favicon: 'img/favicon.ico',

// Set the production url of your site here
url: 'https://blueprints.hypelens.de',
url: 'https://docs-next.hypelens.de',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
Expand Down Expand Up @@ -64,7 +64,7 @@ const config: Config = {
],
],

themes: ['docusaurus-theme-search-typesense'],
themes: ['docusaurus-theme-search-typesense'],
themeConfig: {
// Replace with your project's social card
image: 'img/docusaurus-social-card.jpg',
Expand Down Expand Up @@ -182,7 +182,7 @@ const config: Config = {
autoCollapseCategories: true,
},
},

typesense: {
// Replace this with the name of your index/collection.
// It should match the "index_name" entry in the scraper's "config.json" file.
Expand All @@ -191,22 +191,22 @@ const config: Config = {
typesenseServerConfig: {
nodes: [
{
host: "blueprints.hypelens.de",
port: 8108,
host: "docs-search.hypelens.de",
port: 80,
protocol: "http",
},
],
apiKey: "MureoeGWbndo4Ly17a4E7y64fZa8XxRb",
apiKey: "j2Q51UsLuh9guYtc4x147Mv5X74g4iSI",
},

// Optional: Typesense search parameters: https://typesense.org/docs/0.24.0/api/search.html#search-parameters
typesenseSearchParameters: {},
searchPagePath: false,

// Optional
contextualSearch: true,
},
} satisfies Preset.ThemeConfig,
};

export default config;
export default config;

0 comments on commit b6720e7

Please sign in to comment.