generated from sig_core/wiki-template
chore: init repo, deploy to fastly
All checks were successful
mkdocs build / build (push) Successful in 1m17s
All checks were successful
mkdocs build / build (push) Successful in 1m17s
This commit is contained in:
parent
fd4a4f97c1
commit
0a9ced1eef
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
@ -11,31 +11,31 @@ jobs:
|
||||
image: docker.io/rockylinux:9
|
||||
steps:
|
||||
- name: Install deps
|
||||
run: dnf -y upgrade && dnf -y install git python3 python3-pip cairo-devel
|
||||
|
||||
- name: setup ssh
|
||||
env:
|
||||
SSH_KEY: "${{ secrets.SSH_KEY }}"
|
||||
run: |
|
||||
mkdir -p ~/.ssh/
|
||||
echo "$SSH_KEY" > ~/.ssh/id_rsa
|
||||
chmod 0700 ~/.ssh/
|
||||
chmod 0600 ~/.ssh/id_rsa
|
||||
dnf -y upgrade
|
||||
dnf -y install git python3 python3-pip cairo-devel
|
||||
|
||||
- name: checkout
|
||||
env:
|
||||
GIT_SSH_COMMAND: "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
|
||||
run:
|
||||
git clone https://git.resf.org/$GITHUB_REPOSITORY.git $GITHUB_WORKSPACE
|
||||
|
||||
- name: Install python requirements
|
||||
run: python3 -m pip install -r requirements.txt
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
python3 -m mkdocs build
|
||||
|
||||
- name: Install fastly CLI
|
||||
run: |
|
||||
dnf -y install \
|
||||
npm \
|
||||
https://github.com/fastly/cli/releases/download/v10.13.3/fastly_10.13.3_linux_amd64.rpm
|
||||
|
||||
- name: Deploy
|
||||
env:
|
||||
GIT_SSH_COMMAND: "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no"
|
||||
GIT_AUTHOR_NAME: "Rocky Bot"
|
||||
GIT_AUTHOR_EMAIL: "auto@rockylinux.org"
|
||||
FASTLY_API_TOKEN: "${{ secrets.FASTLY_API_TOKEN }}"
|
||||
run: |
|
||||
git remote set-url origin ssh://git@git.resf.org:22220/$GITHUB_REPOSITORY.git
|
||||
python3 -m mkdocs gh-deploy --force
|
||||
pushd compute-js
|
||||
npm install
|
||||
fastly compute publish
|
||||
|
@ -1,10 +1,10 @@
|
||||
# REPLACEME Wiki
|
||||
# SIG/Desktop and Gaming Wiki
|
||||
|
||||
@TODO - fill in :)
|
||||
|
||||
## Continuous Integration / Continuous Deployment
|
||||
|
||||
Actions Runner executes workflow to publish to https://REPLACEME.rocky.page on push to main.
|
||||
Actions Runner executes workflow to publish to https://sig-desktop.rocky.page on push to main.
|
||||
|
||||
## Building Locally
|
||||
|
||||
|
4
compute-js/.gitignore
vendored
Normal file
4
compute-js/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
/node_modules
|
||||
/bin
|
||||
/pkg
|
||||
/static-publisher
|
2
compute-js/.publish-id
Normal file
2
compute-js/.publish-id
Normal file
@ -0,0 +1,2 @@
|
||||
# Generated by @fastly/compute-js-static-publish.
|
||||
4dXMPpTFWNtVd69aWtO2D5
|
12
compute-js/fastly.toml
Normal file
12
compute-js/fastly.toml
Normal file
@ -0,0 +1,12 @@
|
||||
# This file describes a Fastly Compute package. To learn more visit:
|
||||
# https://www.fastly.com/documentation/reference/compute/fastly-toml
|
||||
|
||||
authors = ["sig-desktop@rocky.page"]
|
||||
description = "SIG/Desktop and Gaming wiki"
|
||||
language = "javascript"
|
||||
manifest_version = 2
|
||||
name = "sig-desktop.rocky.page"
|
||||
service_id = "8h3hwmDLxoUh3p8t3POuE7"
|
||||
|
||||
[scripts]
|
||||
build = "npm run build"
|
2051
compute-js/package-lock.json
generated
Normal file
2051
compute-js/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
compute-js/package.json
Normal file
23
compute-js/package.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "sig-desktop.rocky.page",
|
||||
"version": "0.1.0",
|
||||
"description": "SIG/Desktop and Gaming wiki",
|
||||
"author": "sig-desktop@rocky.page",
|
||||
"type": "module",
|
||||
"devDependencies": {
|
||||
"@fastly/compute-js-static-publish": "^6.0.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fastly/js-compute": "^3.20.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0"
|
||||
},
|
||||
"license": "UNLICENSED",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"deploy": "fastly compute deploy",
|
||||
"prebuild": "npx @fastly/compute-js-static-publish --build-static",
|
||||
"build": "js-compute-runtime ./src/index.js ./bin/main.wasm"
|
||||
}
|
||||
}
|
18
compute-js/src/index.js
Normal file
18
compute-js/src/index.js
Normal file
@ -0,0 +1,18 @@
|
||||
/// <reference types="@fastly/js-compute" />
|
||||
import { getServer } from '../static-publisher/statics.js';
|
||||
const staticContentServer = getServer();
|
||||
|
||||
// eslint-disable-next-line no-restricted-globals
|
||||
addEventListener("fetch", (event) => event.respondWith(handleRequest(event)));
|
||||
async function handleRequest(event) {
|
||||
|
||||
const response = await staticContentServer.serveRequest(event.request);
|
||||
if (response != null) {
|
||||
return response;
|
||||
}
|
||||
|
||||
// Do custom things here!
|
||||
// Handle API requests, serve non-static responses, etc.
|
||||
|
||||
return new Response('Not found', { status: 404 });
|
||||
}
|
34
compute-js/static-publish.rc.js
Normal file
34
compute-js/static-publish.rc.js
Normal file
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* Copyright Fastly, Inc.
|
||||
* Licensed under the MIT license. See LICENSE file for details.
|
||||
*/
|
||||
|
||||
// Commented items are defaults, feel free to modify and experiment!
|
||||
// See README for a detailed explanation of the configuration options.
|
||||
|
||||
/** @type {import('@fastly/compute-js-static-publish').StaticPublisherConfig} */
|
||||
const config = {
|
||||
rootDir: "../site",
|
||||
staticContentRootDir: "./static-publisher",
|
||||
// kvStoreName: false,
|
||||
// excludeDirs: [ './node_modules' ],
|
||||
// excludeDotFiles: true,
|
||||
// includeWellKnown: true,
|
||||
// contentAssetInclusionTest: (filename) => true,
|
||||
// contentCompression: [ 'br', 'gzip' ], // For this config value, default is [] if kvStoreName is null.
|
||||
// moduleAssetInclusionTest: (filename) => false,
|
||||
// contentTypes: [
|
||||
// { test: /.custom$/, contentType: 'application/x-custom', text: false },
|
||||
// ],
|
||||
server: {
|
||||
publicDirPrefix: "",
|
||||
staticItems: ["/assets/"],
|
||||
// compression: [ 'br', 'gzip' ],
|
||||
spaFile: false,
|
||||
notFoundPageFile: "/404.html",
|
||||
autoExt: [],
|
||||
autoIndex: ["index.html","index.htm"],
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
@ -1 +1,2 @@
|
||||
REPLACEME.rocky.page
|
||||
sig-desktop.rocky.page
|
||||
sig-gaming.rocky.page
|
||||
|
8
docs/governance.md
Normal file
8
docs/governance.md
Normal file
@ -0,0 +1,8 @@
|
||||
|
||||
The Desktop SIG began as an idea early on in the formation of Rocky Linux. In June 2024, this "legacy" SIG was [renewed](https://git.resf.org/sig_core/meta/issues/31) as the Desktop and Gaming SIG.
|
||||
|
||||
The membership list is maintained in the SIG/Desktop wiki: [membership](index.md#membership).
|
||||
|
||||
Membership can be requested by filing and issue on the [SIG Tracker](https://git.resf.org/sig_desktop/meta/issues/), attending any SIG meeting, or joining and participating in the SIG on Mattermost/IRC in between meetings. Everyone is welcome to join, however the SIG Leads reserve the right to remove members from the SIG for any reason.
|
||||
|
||||
@TODO - Decide on further governance.
|
@ -1,10 +1,23 @@
|
||||
# REPLACEME Wiki
|
||||
# SIG/Desktop and Gaming Wiki
|
||||
|
||||
## Links
|
||||
|
||||
## Responsibilities
|
||||
|
||||
@TODO
|
||||
|
||||
## Meetings / Communications
|
||||
|
||||
## Members
|
||||
SIG/Desktop meets once a month on ___.
|
||||
|
||||
## Membership
|
||||
|
||||
Anyone is welcome to join and contribute to the SIG! See our [Governance](governance.md) page for details on how to request membership
|
||||
|
||||
* @alexia
|
||||
* Brian Clemens
|
||||
* Jonas Rosland
|
||||
* Neil Hanlon
|
||||
* Scott Shinn (@atomicturtle)
|
||||
* Skip Grube
|
||||
* Taylor Goodwill
|
||||
|
10
mkdocs.yml
10
mkdocs.yml
@ -1,13 +1,13 @@
|
||||
---
|
||||
# Project information
|
||||
site_name: REPLACEME Wiki
|
||||
site_url: https://REPLACEME.rocky.page
|
||||
site_name: SIG/Desktop and Gaming Wiki
|
||||
site_url: https://sig-desktop.rocky.page
|
||||
site_description: >-
|
||||
REPLACEME
|
||||
The wiki for Rocky Linux Desktop and Gaming Special Interest Group
|
||||
|
||||
# Repository
|
||||
repo_url: https://git.resf.org/REPLACEME/wiki
|
||||
repo_name: REPLACEME/wiki
|
||||
repo_url: https://git.resf.org/sig_desktop/wiki
|
||||
repo_name: sig_desktop/wiki
|
||||
edit_uri: _edit/main/docs/
|
||||
|
||||
# Copyright
|
||||
|
Loading…
Reference in New Issue
Block a user