🚀 Init
This commit is contained in:
commit
930c8b85d0
6 changed files with 82 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
dists
|
31
config.json
Normal file
31
config.json
Normal file
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
"SiteSettings": {
|
||||
"OrgName": "SudoVanilla",
|
||||
"SiteName": "Devojo",
|
||||
"SiteProtocol": "https",
|
||||
"SiteDomain": "devojo.docs.sudovanilla.org",
|
||||
"SiteBase": "",
|
||||
"MetaColor": "",
|
||||
"WhiteLabel": "true",
|
||||
"FooterVersion": "true"
|
||||
},
|
||||
"HeaderItems": [
|
||||
{
|
||||
"text": "Download",
|
||||
"link": "#"
|
||||
}
|
||||
],
|
||||
"SidebarItems": [
|
||||
{
|
||||
"heading": "Introduction"
|
||||
},
|
||||
{
|
||||
"text": "Introduction",
|
||||
"link": "/introduction/"
|
||||
},
|
||||
{
|
||||
"text": "Installation",
|
||||
"link": "/installation/"
|
||||
}
|
||||
]
|
||||
}
|
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
butterflyvu:
|
||||
image: ark.sudovanilla.org/korbs/butterflyvu:amd64
|
||||
network_mode: bridge
|
||||
volumes:
|
||||
- ./config.json:/app/config.json
|
||||
- ./docs/home.mdx:/app/src/content/home.mdx
|
||||
- ./docs/:/app/src/content/docs/
|
||||
- ./dists/:/app/dist/
|
||||
|
||||
nginx:
|
||||
image: nginx:latest
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 4244:80
|
||||
volumes:
|
||||
- ./dists/:/usr/share/nginx/html/
|
9
docs/home.mdx
Normal file
9
docs/home.mdx
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
layout: "@layouts/Splash.astro"
|
||||
Title: "Devojo"
|
||||
Banner: "https://md.sudovanilla.org/images/logos/devojo/png/banners/butterflyvu.png"
|
||||
PrimaryText: "Get Started"
|
||||
SecondaryText: "Source Code"
|
||||
PrimaryLink: "/introduction/"
|
||||
SecondaryLink: "https://ark.sudovanilla.org/Korbs/Devojo/"
|
||||
---
|
10
docs/installation.mdx
Normal file
10
docs/installation.mdx
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
Title: Installation
|
||||
Type: Document
|
||||
---
|
||||
|
||||
To install Devojo, download the file that approiate for your operating system.
|
||||
|
||||
The list of downloads are located on SudoVanilla Downloads:
|
||||
|
||||
https://dl.sudovanilla.org/applications/devojo/latest/
|
14
docs/introduction.mdx
Normal file
14
docs/introduction.mdx
Normal file
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
Title: Introduction
|
||||
Type: Document
|
||||
---
|
||||
|
||||
## What is it?
|
||||
|
||||
Devojo is a desktop application that displays Penpot in a tab form, you can also you your own Penpot instance using the settings menu.
|
||||
|
||||
## Support
|
||||
|
||||
If you're having issues with Devojo, feel free to submit an issue to the repository on either [SudoVanilla Ark](https://ark.sudovanilla.org/Korbs/Devojo) or [Codeberg](https://codeberg.org/Korbs/Devojo).
|
||||
|
||||
If you're unable to create an issue on either sites, for whatever reason, [email support](mailto:support-PLEASE-REMOVE-THIS-FOR-SPAM-PROTECTION@sudovanilla.org) is available.
|
Loading…
Reference in a new issue