File tree Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Expand file tree Collapse file tree 4 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Gradle
2
+ .gradle
3
+ build
4
+
1
5
# IDEA
2
6
.idea
3
7
* .iml
Original file line number Diff line number Diff line change
1
+ = Bisq Network Documentation
2
+
3
+ These are the sources for the docs hosted at https://docs.bisq.network .
4
+
5
+ To build these docs locally, clone this repository and run
6
+
7
+ ./gradlew build
8
+
9
+ Then open ` build/asciidoc/html5/index.html ` in your browser.
Original file line number Diff line number Diff line change
1
+ plugins {
2
+ id ' org.asciidoctor.convert' version ' 1.5.3'
3
+ }
4
+
5
+ asciidoctor {
6
+ sourceDir = file(' .' )
7
+
8
+ resources {
9
+ from(sourceDir) {
10
+ include ' **/*.png'
11
+ }
12
+ }
13
+
14
+ attributes ' source-highlighter' : ' coderay' ,
15
+ toc : ' left' ,
16
+ sectanchors : ' ' ,
17
+ idprefix : ' ' ,
18
+ idseparator : ' -'
19
+ }
20
+
21
+ build. dependsOn asciidoctor
Original file line number Diff line number Diff line change
1
+ = The Bisq Network Manual
2
+ ifdef::env-github,env-browser[:outfilesuffix: .adoc]
3
+
4
+ - link:dao/phase-zero{outfilesuffix}[Phase Zero]
5
+ - link:exchange/howto/list-asset.adoc[How to list an asset]
You can’t perform that action at this time.
0 commit comments