Skip to content

Commit

Permalink
Code in den Anhang
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakodan007 committed Apr 22, 2024
1 parent 8364788 commit d41947f
Show file tree
Hide file tree
Showing 153 changed files with 16,582 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
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"]
}
}
}
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
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',
},
}
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?
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/

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/).
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>
Loading

0 comments on commit d41947f

Please sign in to comment.