-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from thoth-tech/main
Adding T1-2024 Thoth Tech contributions
- Loading branch information
Showing
1,207 changed files
with
8,669 additions
and
689 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM mcr.microsoft.com/devcontainers/javascript-node:0-20 | ||
|
||
# Install OpenJDK-8 | ||
RUN apt-get update && \ | ||
apt-get install -y openjdk-11-jdk && \ | ||
apt-get install -y ant && \ | ||
apt-get clean; | ||
|
||
# Fix certificate issues | ||
RUN apt-get update && \ | ||
apt-get install ca-certificates-java && \ | ||
apt-get clean && \ | ||
update-ca-certificates -f; | ||
|
||
RUN ln -s `readlink -f /usr/bin/java | sed "s:bin/java::"` /usr/local/java | ||
|
||
ENV JAVA_HOME /usr/local/java |
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 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node | ||
{ | ||
"name": "splashkit.io", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
// "image": "mcr.microsoft.com/devcontainers/javascript-node:0-20", | ||
"dockerFile": "Dockerfile", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"yzhang.markdown-all-in-one", | ||
"DavidAnson.vscode-markdownlint", | ||
"astro-build.astro-vscode", | ||
"ms-vsliveshare.vsliveshare", | ||
// "tomoki1207.pdf", | ||
"eamodio.gitlens" | ||
// "valentjn.vscode-ltex" | ||
] | ||
} | ||
} | ||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "yarn install", | ||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"MD033": false, | ||
"MD013": false | ||
} |
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,4 @@ | ||
{ | ||
"recommendations": ["astro-build.astro-vscode"], | ||
"unwantedRecommendations": [] | ||
} |
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,5 @@ | ||
{ | ||
"files.associations": { | ||
"*.mdx": "markdown" | ||
} | ||
} |
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,22 @@ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Serve splashkit.io Website", | ||
"type": "shell", | ||
"command": "npm install && ./node_modules/.bin/astro dev", | ||
"group": "build", | ||
"presentation": { | ||
"group": "buildGroup", | ||
"reveal": "always", | ||
"panel": "new", | ||
"echo": false | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" // This starts both tasks when the container is started | ||
}, | ||
} | ||
] | ||
} |
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,11 +1,8 @@ | ||
// Author: Aditya Parmar (XQuestCode) | ||
// Contact: [email protected] | ||
import { defineConfig, squooshImageService } from "astro/config"; | ||
import starlight from "@astrojs/starlight"; | ||
import solidJs from "@astrojs/solid-js"; | ||
|
||
import react from "@astrojs/react"; | ||
|
||
import starlightLinksValidator from 'starlight-links-validator'; | ||
import sitemap from "@astrojs/sitemap"; | ||
|
||
// https://astro.build/config | ||
|
@@ -21,6 +18,12 @@ export default defineConfig({ | |
components: { | ||
Sidebar: './src/components/Sidebar.astro' | ||
}, | ||
|
||
plugins: [ | ||
starlightLinksValidator({ | ||
errorOnRelativeLinks: true, | ||
}), | ||
], | ||
expressiveCode: { | ||
// theme: ["github-dark", "github-light"], | ||
// frames: { | ||
|
@@ -30,7 +33,7 @@ export default defineConfig({ | |
useDarkModeMediaQuery: true, | ||
}, | ||
customCss: [ | ||
|
||
"/src/styles/custom.css", | ||
"/src/styles/background.css", | ||
"/src/styles/cards.css", | ||
|
Oops, something went wrong.