-
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.
- Loading branch information
1 parent
8364788
commit d41947f
Showing
153 changed files
with
16,582 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/.browserslistrc
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 @@ | ||
> 1% | ||
last 2 versions | ||
not dead | ||
not ie 11 |
8 changes: 8 additions & 0 deletions
8
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/.devcontainer.json
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,8 @@ | ||
{ | ||
"image": "mam10eks/tira-for-school:0.0.1", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": ["ms-python.python", "ms-python.vscode-pylance", "ms-toolsai.jupyter"] | ||
} | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/.editorconfig
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 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
14 changes: 14 additions & 0 deletions
14
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/.eslintrc.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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
}, | ||
extends: [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/eslint-config-typescript', | ||
], | ||
rules: { | ||
'vue/multi-word-component-names': 'off', | ||
}, | ||
} |
22 changes: 22 additions & 0 deletions
22
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/.gitignore
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 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
12 changes: 12 additions & 0 deletions
12
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/Dockerfile.dev
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,12 @@ | ||
# docker build -t webis/tira:vuetify-dev-0.0.1 -f Dockerfile.dev . | ||
FROM node | ||
|
||
ADD package.json yarn.lock /tmp-del/ | ||
|
||
RUN cd /tmp-del \ | ||
&& yarn create vuetify \ | ||
&& yarn install \ | ||
&& mv node_modules/* /usr/local/lib/node_modules/ \ | ||
&& cd / \ | ||
&& rm -R /tmp-del/ | ||
|
69 changes: 69 additions & 0 deletions
69
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/README.md
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,69 @@ | ||
# base | ||
|
||
## Project setup | ||
|
||
``` | ||
# yarn | ||
yarn | ||
# npm | ||
npm install | ||
# pnpm | ||
pnpm install | ||
# bun | ||
bun install | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
|
||
``` | ||
# yarn | ||
yarn dev | ||
# npm | ||
npm run dev | ||
# pnpm | ||
pnpm dev | ||
# bun | ||
pnpm run dev | ||
``` | ||
|
||
### Compiles and minifies for production | ||
|
||
``` | ||
# yarn | ||
yarn build | ||
# npm | ||
npm run build | ||
# pnpm | ||
pnpm build | ||
# bun | ||
pnpm run build | ||
``` | ||
|
||
### Lints and fixes files | ||
|
||
``` | ||
# yarn | ||
yarn lint | ||
# npm | ||
npm run lint | ||
# pnpm | ||
pnpm lint | ||
# bun | ||
pnpm run lint | ||
``` | ||
|
||
### Customize configuration | ||
|
||
See [Configuration Reference](https://vitejs.dev/config/). |
16 changes: 16 additions & 0 deletions
16
Unterrichtsstunden/Stex/Anhang_Code/pupil-submission-page/index.html
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,16 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Tira Schule</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.