initial commit
Some checks failed
Release to Production / build_and_release (push) Has been cancelled
Some checks failed
Release to Production / build_and_release (push) Has been cancelled
This commit is contained in:
parent
c733ccdd7e
commit
8e6d29f574
23
.gitea/workflows/release-production.yaml
Normal file
23
.gitea/workflows/release-production.yaml
Normal 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 ./* /
|
@ -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
3
_sidebar.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
* [Create](/create.md)
|
||||||
|
* [Sign](/sign.md)
|
||||||
|
* [Verify](/verify.md)
|
5
downloadassets.sh
Executable file
5
downloadassets.sh
Executable 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
BIN
favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 80 KiB |
51
index.html
Normal file
51
index.html
Normal 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
static/assets/css/buble.css
Normal file
1
static/assets/css/buble.css
Normal file
File diff suppressed because one or more lines are too long
1
static/assets/js/docsify.js
Normal file
1
static/assets/js/docsify.js
Normal file
File diff suppressed because one or more lines are too long
1
static/assets/js/search.min.js
vendored
Normal file
1
static/assets/js/search.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user