Skip to content

Commit 35c20da

Browse files
committed
Remove Dockerfile
1 parent 122b754 commit 35c20da

File tree

4 files changed

+8
-32
lines changed

4 files changed

+8
-32
lines changed

Dockerfile

-32
This file was deleted.

build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ dependencies {
5353
modApi(libs.modmenu)
5454
modRuntimeOnly(libs.devauth)
5555
dokkaPlugin(libs.versioning)
56+
dokkaHtmlPlugin(project(":dokka-plugin"))
5657

5758
implementation(kotlin("stdlib-jdk8"))
5859
implementation(project(":typing-generator"))

scripts/buildDocs.sh scripts/buildAndServeDocs.sh

+6
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,9 @@ cp -r "$output_dir" "$JAVADOCS_ARCHIVE_PATH"
1717
# Remove the version name from the hierarchy so the Dockerfile doesn't need to worry about it
1818
cp -r "$output_dir"/* "$BUILD_DIR"
1919
rm -rf "$output_dir"
20+
21+
# Install deps
22+
sudo apt install httpd
23+
24+
# Run
25+
trap "exit 0;" TERM INT; httpd -v -p $PORT -h /www -f & wait

settings.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ pluginManagement {
88

99
rootProject.name = "ctjs"
1010
include(":typing-generator")
11+
include(":dokka-plugin")

0 commit comments

Comments
 (0)