initial commit

This commit is contained in:
YamiDoesDev 2022-11-01 22:57:27 +01:00
parent 125773b257
commit 4a024ad9f0
9 changed files with 89 additions and 0 deletions

34
.github/workflows/docs-markdown.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: Build Documentation from Markdown
run-name: ${{ GITHUB.ACTOR }} is generating a Documentation from Markdown 🚀
on:
workflow_dispatch:
push:
branches:
- main
paths:
- ".github/workflows/docs-markdown.yml"
- "docs/**"
jobs:
build_markdown_documentation:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate HTML from Markdown
uses: ldeluigi/markdown-docs@latest
with:
src: docs/
dst: ./gh-pages
title: Markdown Docs
language: de
icon: library
primary-color: indigo
secondary-color: indigo
hide-repository: false
- name: Deploy GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}

0
.gitignore vendored Normal file
View File

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/docs" />
<excludeFolder url="file://$MODULE_DIR$/.github" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

6
.idea/misc.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="openjdk-17" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/algodat-java-intro.iml" filepath="$PROJECT_DIR$/.idea/algodat-java-intro.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

9
docs/index.md Normal file
View File

@ -0,0 +1,9 @@
# Crashkurs Java im Modul Algorithmen und Datenstrukturen
```java
public class Main {
public static void main(String[] args) {
System.out.println("Die Seite ist noch leer");
}
}
```