Skip to content

Commit 3369f10

Browse files
authored
update: New doc system (#25)
1 parent cf90d8c commit 3369f10

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+463
-695
lines changed

.github/workflows/upload.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Upload docs
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
7+
jobs:
8+
upload:
9+
runs-on: ubuntu-latest
10+
container:
11+
image: lichthund/docs:latest
12+
13+
steps:
14+
# Check out the repo to access the files
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
# Run application with the files!
19+
- name: Run
20+
run: |
21+
java -jar /app/application.jar -i $GITHUB_WORKSPACE -b ${{ secrets.AUTH }} -u https://new.triumphteam.dev/

.gitignore

+139
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/gradle,intellij+all
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=gradle,intellij+all
4+
5+
### Intellij+all ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# AWS User-specific
17+
.idea/**/aws.xml
18+
19+
# Generated files
20+
.idea/**/contentModel.xml
21+
22+
# Sensitive or high-churn files
23+
.idea/**/dataSources/
24+
.idea/**/dataSources.ids
25+
.idea/**/dataSources.local.xml
26+
.idea/**/sqlDataSources.xml
27+
.idea/**/dynamic.xml
28+
.idea/**/uiDesigner.xml
29+
.idea/**/dbnavigator.xml
30+
31+
# Gradle
32+
.idea/**/gradle.xml
33+
.idea/**/libraries
34+
35+
# Gradle and Maven with auto-import
36+
# When using Gradle or Maven with auto-import, you should exclude module files,
37+
# since they will be recreated, and may cause churn. Uncomment if using
38+
# auto-import.
39+
# .idea/artifacts
40+
# .idea/compiler.xml
41+
# .idea/jarRepositories.xml
42+
# .idea/modules.xml
43+
# .idea/*.iml
44+
# .idea/modules
45+
# *.iml
46+
# *.ipr
47+
48+
# CMake
49+
cmake-build-*/
50+
# Mongo Explorer plugin
51+
.idea/**/mongoSettings.xml
52+
53+
# File-based project format
54+
*.iws
55+
56+
# IntelliJ
57+
out/
58+
59+
# mpeltonen/sbt-idea plugin
60+
.idea_modules/
61+
62+
# JIRA plugin
63+
atlassian-ide-plugin.xml
64+
65+
# Cursive Clojure plugin
66+
.idea/replstate.xml
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### Intellij+all Patch ###
81+
# Ignores the whole .idea folder and all .iml files
82+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
83+
84+
.idea/
85+
86+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
87+
88+
*.iml
89+
modules.xml
90+
.idea/misc.xml
91+
*.ipr
92+
93+
# Sonarlint plugin
94+
.idea/sonarlint
95+
96+
### Gradle ###
97+
.gradle
98+
build/
99+
100+
# Ignore Gradle GUI config
101+
gradle-app.setting
102+
103+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
104+
!gradle-wrapper.jar
105+
106+
# Cache of project
107+
.gradletasknamecache
108+
109+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
110+
# gradle/wrapper/gradle-wrapper.properties
111+
112+
### Gradle Patch ###
113+
**/build/
114+
115+
# Eclipse Gradle plugin generated files
116+
# Eclipse Core
117+
.project
118+
# JDT-specific (Eclipse Java Development Tools)
119+
.classpath
120+
121+
# End of https://www.toptal.com/developers/gitignore/api/gradle,intellij+all
122+
123+
.kotlin/
124+
data/
125+
test-module/
126+
127+
backend/src/main/resources/static/scripts/script.js
128+
129+
backend/src/main/resources/static/scripts/script.js.map
130+
131+
kotlin-js-store/
132+
133+
tailwind/
134+
135+
backend/src/main/resources/static/css/tailwind.css
136+
137+
output/
138+
139+
projects.zip

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# docs
1+
# Docs
2+
Home to all our documentation files used on https://triumphteam.dev/.

libraries/triumph-cmds/PROJECT.json

-138
This file was deleted.

libraries/triumph-core/ICON.png

-14.9 KB
Binary file not shown.

libraries/triumph-core/PROJECT.json

-59
This file was deleted.

0 commit comments

Comments
 (0)