Skip to content

Commit efe1dff

Browse files
committed
start docs
1 parent 790b6fd commit efe1dff

17 files changed

+872
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/target
2+
/docs/public

docs/config.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# The URL the site will be built for
2+
base_url = "https://tiron.run"
3+
4+
# Whether to automatically compile all Sass files in the sass directory
5+
compile_sass = false
6+
7+
# Whether to build a search index to be used later on by a JavaScript library
8+
build_search_index = false
9+
10+
[markdown]
11+
# Whether to do syntax highlighting
12+
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
13+
highlight_code = false
14+
15+
[extra]
16+
# Put all your custom variables here

docs/content/actions/_index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
+++
2+
title = "List of actions"
3+
sort_by = "title"
4+
template = "actions.html"
5+
page_template = "actions-item.html"
6+
+++

docs/content/actions/command.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
+++
2+
title = "command"
3+
+++

docs/content/actions/copy.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
+++
2+
title = "copy"
3+
+++

docs/content/actions/file.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
+++
2+
title = "file"
3+
+++
4+
5+
# file module
6+
7+
file
8+
9+
### Description
10+
11+
Manage files/folders and their properties
12+
13+
### Params
14+
15+
This is my first blog post.
16+
17+
Another line
18+
19+
**test**: this is a feature
20+
21+
### Open Source and Open Standard
22+
23+
The `Lapdev` core code is open sourced under the AGPL V3 license, with selected features gated under an Enterprise License.
24+
25+
Before Lapdev, we developed two other open source projects: a code editor Lapce and a native UI toolkit Floem.
26+
Developer environment management software is a crucial component for enhancing developer velocities.
27+
We would not have opted for proprietary software for this purpose ourselves, so it is only logical for us to open source the core code of Lapdev.
28+
29+
To sustain the development of our open source projects, we've introduced enterprise licensing for certain features.
30+
This enables us to generate revenue that directly supports the ongoing enhancement of Lapdev and our broader open source initiatives.
31+
32+
Beyond open source, we also favour open standards.
33+
We’ve adopted the devcontainer specification for the definition and configuration of the development environment.
34+
The standard is already supported by popular tools like VSCode, Codespaces and Devpod.
35+
We believe it’s beneficial for developers to have a single format to define their development environment as code,
36+
and to be able to use it across different tools.

docs/content/actions/package.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
+++
2+
title = "package"
3+
+++

docs/content/blog/_index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
+++
2+
title = "List of blog posts"
3+
sort_by = "date"
4+
template = "blog.html"
5+
page_template = "blog-page.html"
6+
+++

docs/content/blog/first.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
+++
2+
title = "My first post"
3+
date = 2019-11-27
4+
+++
5+
6+
# file module
7+
8+
file
9+
10+
### Description
11+
12+
Manage files/folders and their properties
13+
14+
### Params
15+
16+
This is my first blog post.
17+
18+
Another line
19+
20+
**test**: this is a feature
21+
22+
### Open Source and Open Standard
23+
24+
The `Lapdev` core code is open sourced under the AGPL V3 license, with selected features gated under an Enterprise License.
25+
26+
Before Lapdev, we developed two other open source projects: a code editor Lapce and a native UI toolkit Floem.
27+
Developer environment management software is a crucial component for enhancing developer velocities.
28+
We would not have opted for proprietary software for this purpose ourselves, so it is only logical for us to open source the core code of Lapdev.
29+
30+
To sustain the development of our open source projects, we've introduced enterprise licensing for certain features.
31+
This enables us to generate revenue that directly supports the ongoing enhancement of Lapdev and our broader open source initiatives.
32+
33+
Beyond open source, we also favour open standards.
34+
We’ve adopted the devcontainer specification for the definition and configuration of the development environment.
35+
The standard is already supported by popular tools like VSCode, Codespaces and Devpod.
36+
We believe it’s beneficial for developers to have a single format to define their development environment as code,
37+
and to be able to use it across different tools.

0 commit comments

Comments
 (0)