-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
872 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/target | ||
/docs/public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
+++ | ||
title = "command" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
+++ | ||
title = "copy" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
+++ | ||
title = "package" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.