Skip to content

Commit 5c0144d

Browse files
committed
fix
1 parent e28bf27 commit 5c0144d

File tree

25 files changed

+148
-21
lines changed

25 files changed

+148
-21
lines changed

Dockerfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
FROM golang as hugo-builder
2+
3+
RUN CGO_ENABLED=1 go install -tags extended github.com/gohugoio/hugo@latest
4+
5+
FROM asciidoctor/docker-asciidoctor
6+
7+
# libc6-compat is required for Hugo
8+
RUN apk add --no-cache \
9+
libc6-compat \
10+
curl git make jq \
11+
ruby-dev alpine-sdk graphviz
12+
RUN gem install bundler json asciidoctor-html5s asciidoctor-diagram
13+
14+
COPY --from=hugo-builder /go/bin/hugo /usr/bin/hugo
15+
16+
WORKDIR /src
17+
RUN git config --global --add safe.directory /src
18+
19+
CMD /usr/bin/hugo server --bind=0.0.0.0

compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
services:
2+
server:
3+
build:
4+
context: .
5+
dockerfile: ./Dockerfile
6+
volumes:
7+
- ".:/src"
8+
ports:
9+
- "1313:1313"

config.yaml

+15-1
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,11 @@ defaultContentLanguage: "ja"
3232
languages:
3333
ja:
3434
languageName: 日本語
35+
contentDir: content.ja
3536
weight: 1
3637
en:
37-
language2ame: English
38+
languageName: English
39+
contentDir: content.en
3840
weight: 2
3941

4042
# menu:
@@ -121,10 +123,22 @@ params:
121123
BookTranslatedOnly: false
122124

123125
security:
126+
enableInlineShortcodes: false
124127
exec:
125128
allow:
126129
- '^(dart-)?sass(-embedded)?$'
127130
- '^go$'
128131
- '^npx$'
129132
- '^postcss$'
130133
- '^asciidoctor$'
134+
osEnv:
135+
- '(?i)^((HTTPS?|NO)_PROXY|PATH(EXT)?|APPDATA|TE?MP|TERM|GO\w+|(XDG_CONFIG_)?HOME|USERPROFILE|SSH_AUTH_SOCK|DISPLAY|LANG|SYSTEMDRIVE)$'
136+
funcs:
137+
getenv:
138+
- '^HUGO_'
139+
- '^CI$'
140+
http:
141+
methods:
142+
- '(?i)GET|POST'
143+
urls:
144+
- '.*'
File renamed without changes.

content.ja/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: "Home"
3+
---
4+
5+
# Omnius Labs
6+
7+
## Links
8+
9+
- Docs: https://docs.omnius-labs.com/
10+
- GitHub: https://github.com/omnius-labs
File renamed without changes.
File renamed without changes.

content/docs/projects/lxna/faq/_index.ja.md content.ja/docs/projects/lxna/faq/_index.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
22
title: "FAQ"
3-
weight: 2
3+
weight: 3
44
---
55

6+
# FAQ
7+
68
## UI scaling is wrong on Linux
79

810
You need to set the AVALONIA_SCREEN_SCALE_FACTORS environment variable.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "Requirements"
3+
weight: 1
4+
---
5+
6+
== Requirements
7+
8+
[plantuml]
9+
----
10+
include::requirements.puml[]
11+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@startmindmap requirements
2+
* FileStorage
3+
** Operations
4+
*** Execute
5+
*** Cut
6+
*** Copy
7+
*** Paste
8+
*** Move
9+
*** Delete
10+
** View
11+
*** Thumbnail
12+
*** Slideshow
13+
@endmindmap
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: "Specifications"
3+
weight: 2
4+
---
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: "Models"
3+
weight: 1
4+
---
5+
6+
== Models
7+
8+
[plantuml]
9+
----
10+
include::models.puml[]
11+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@startmindmap models
2+
* Directory
3+
** LocalDirectory
4+
** ArchivedDirectory
5+
* File
6+
** LocalFile
7+
** ArchivedFile
8+
* Thumbnail
9+
** Path
10+
** ResizeType
11+
*** Pad
12+
*** Crop
13+
** FormatType
14+
*** Png
15+
** Width
16+
** Height
17+
@endmindmap
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
title: "Specifications"
3+
---

content/docs/projects/opxs/specifications/image-convert/_index.ja.adoc content.ja/docs/projects/opxs/specifications/image-convert/_index.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
title: "image-convert"
33
weight: 1
4-
bookCollapseSection: true
54
---
65

76
== 画像変換

content/docs/projects/opxs/specifications/image-convert/sequence.puml content.ja/docs/projects/opxs/specifications/image-convert/sequence.puml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@startuml image-convert
1+
@startuml sequence
22

33
participant Browser as browser
44
participant api
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: "migration"
3+
weight: 1
4+
---
5+
6+
== マイグレーション
7+
8+
=== 概要
9+
10+
api起動時にマイグレーションを実行する
11+
12+
=== シーケンス図
13+
14+
[plantuml]
15+
----
16+
include::sequence.puml[]
17+
----
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
@startuml migration
2+
3+
participant api
4+
database db
5+
6+
api -> api : read migration files
7+
api -> db : fetch migration histories
8+
db --> api
9+
api -> db : insert semaphore record
10+
loop
11+
api -> db : migration
12+
end
13+
api -> db : delete semaphore record
14+
15+
@enduml

content/docs/projects/axus/memo/_index.ja.md

-13
This file was deleted.

content/docs/projects/opxs/_index.ja.md

-4
This file was deleted.

0 commit comments

Comments
 (0)