initial commit
Some checks failed
Release to Production / build_and_release (push) Has been cancelled

This commit is contained in:
zver 2024-06-01 16:03:46 +01:00
parent c733ccdd7e
commit 8e6d29f574
13 changed files with 92 additions and 1 deletions

View File

@ -0,0 +1,23 @@
name: Release to Production
on:
push:
branches:
- main
jobs:
build_and_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
- name: Release Build
run: |
npm -g install cloudron-surfer
surfer put --token ${{ secrets.DOCS_CLOUDRON_SURFER_TOKEN }} --server docs.sigit.io ./* /

0
.nojekyll Normal file
View File

View File

@ -1,2 +1,5 @@
# docs.sigit.io
# SIGit Documentation
SIGit is an open source, encrypted document signing tool. Users can Create, Sign and Verify documents individually or in groups.

3
_sidebar.md Normal file
View File

@ -0,0 +1,3 @@
* [Create](/create.md)
* [Sign](/sign.md)
* [Verify](/verify.md)

1
create.md Normal file
View File

@ -0,0 +1 @@
# Create

5
downloadassets.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/bash
curl https://cdn.jsdelivr.net/npm/docsify/lib/themes/buble.css > static/assets/css/buble.css
curl https://cdn.jsdelivr.net/npm/docsify@4 > static/assets/js/docsify.js
curl https://cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js > static/assets/js/search.min.js

BIN
favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

51
index.html Normal file
View File

@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="favicon.png" />
<title>SIGit Docs</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> -->
<!--link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/lib/themes/buble.css" /-->
<link rel="stylesheet" href="static/assets/css/buble.css" />
</head>
<body>
<nav>
<a href="#/Create">Create</a>
<a href="#/Sign">Sign</a>
<a href="#/Verify">Verify</a>
</nav>
<div id="app">SIGit Documentation is loading...</div>
<script>
window.$docsify = {
repo: 'https://git.sigit.io/sig/docs.sigit.io',
loadNavbar: false,
loadSidebar: '_sidebar.md',
basePath: window.location.pathname,
logo: 'favicon.png',
name: 'SIGit',
autoHeader: true,
search: 'auto',
relativePath: true,
routermode: 'history'
}
</script>
<script>
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<!-- Docsify v4
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
-->
<script src="static/assets/js/docsify.js"></script>
<script src="static/assets/js/search.min.js"></script>
</body>
</html>

1
sign.md Normal file
View File

@ -0,0 +1 @@
# Sign

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
static/assets/js/search.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
verify.md Normal file
View File

@ -0,0 +1 @@
# Verify