chore: initial commit

This commit is contained in:
. 2024-10-06 22:10:35 +01:00
commit 49d532534f
6 changed files with 2464 additions and 0 deletions

View File

@ -0,0 +1,31 @@
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: Install Dependencies
run: npm ci
- name: Create Build
run: npm run build
- name: Release Build
run: |
npm -g install cloudron-surfer
surfer config --token ${{ secrets.CLOUDRON_SURFER_TOKEN }} --server slides.sigit.io
surfer put site/* / --all -d
surfer put site/.well-known / --all

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
site
.DS_Store
node_modules/

5
README.md Normal file
View File

@ -0,0 +1,5 @@
Available decks:
* [Nostr Hack Day](/nostrhackday) - Berlin, 9th Oct 2024
[source](https://git.nostrdev.com/sigit/slides.sigit.io)

2395
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "slides.sigit.io",
"version": "1.0.0",
"description": "SIGit - Secure & Private Agreements",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"berlin": "marp ./slides/2024berlin.md -o ./2024berlin/index.html --html=true"
},
"repository": {
"type": "git",
"url": "https://git.nostrdev.com/sigit/slides.sigit.io"
},
"keywords": [
"nostr",
"sigit"
],
"author": "nostrdev.com",
"license": "MIT",
"bugs": {
"url": "https://git.nostrdev.com/sigit/slides.sigit.io/issues"
},
"homepage": "https://slides.sigit.io",
"dependencies": {
"@marp-team/marp-cli": "^4.0.0"
}
}

0
slides/2024berlin.md Normal file
View File