Skip to content

Commit

Permalink
start docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dzhou121 committed Apr 11, 2024
1 parent 790b6fd commit efe1dff
Show file tree
Hide file tree
Showing 17 changed files with 872 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
/docs/public
16 changes: 16 additions & 0 deletions docs/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# The URL the site will be built for
base_url = "https://tiron.run"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = false

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false

[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = false

[extra]
# Put all your custom variables here
6 changes: 6 additions & 0 deletions docs/content/actions/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "List of actions"
sort_by = "title"
template = "actions.html"
page_template = "actions-item.html"
+++
3 changes: 3 additions & 0 deletions docs/content/actions/command.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "command"
+++
3 changes: 3 additions & 0 deletions docs/content/actions/copy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "copy"
+++
36 changes: 36 additions & 0 deletions docs/content/actions/file.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
+++
title = "file"
+++

# file module

file

### Description

Manage files/folders and their properties

### Params

This is my first blog post.

Another line

**test**: this is a feature

### Open Source and Open Standard

The `Lapdev` core code is open sourced under the AGPL V3 license, with selected features gated under an Enterprise License.

Before Lapdev, we developed two other open source projects: a code editor Lapce and a native UI toolkit Floem.
Developer environment management software is a crucial component for enhancing developer velocities.
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.

To sustain the development of our open source projects, we've introduced enterprise licensing for certain features.
This enables us to generate revenue that directly supports the ongoing enhancement of Lapdev and our broader open source initiatives.

Beyond open source, we also favour open standards.
We’ve adopted the devcontainer specification for the definition and configuration of the development environment.
The standard is already supported by popular tools like VSCode, Codespaces and Devpod.
We believe it’s beneficial for developers to have a single format to define their development environment as code,
and to be able to use it across different tools.
3 changes: 3 additions & 0 deletions docs/content/actions/package.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
+++
title = "package"
+++
6 changes: 6 additions & 0 deletions docs/content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
+++
title = "List of blog posts"
sort_by = "date"
template = "blog.html"
page_template = "blog-page.html"
+++
37 changes: 37 additions & 0 deletions docs/content/blog/first.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
+++
title = "My first post"
date = 2019-11-27
+++

# file module

file

### Description

Manage files/folders and their properties

### Params

This is my first blog post.

Another line

**test**: this is a feature

### Open Source and Open Standard

The `Lapdev` core code is open sourced under the AGPL V3 license, with selected features gated under an Enterprise License.

Before Lapdev, we developed two other open source projects: a code editor Lapce and a native UI toolkit Floem.
Developer environment management software is a crucial component for enhancing developer velocities.
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.

To sustain the development of our open source projects, we've introduced enterprise licensing for certain features.
This enables us to generate revenue that directly supports the ongoing enhancement of Lapdev and our broader open source initiatives.

Beyond open source, we also favour open standards.
We’ve adopted the devcontainer specification for the definition and configuration of the development environment.
The standard is already supported by popular tools like VSCode, Codespaces and Devpod.
We believe it’s beneficial for developers to have a single format to define their development environment as code,
and to be able to use it across different tools.
Loading

0 comments on commit efe1dff

Please sign in to comment.