move js stuff to fork subdir to delete later, init go mod

This commit is contained in:
Wouter Groeneveld 2021-04-07 09:24:25 +02:00
parent 535368c386
commit 3138a7f3ef
60 changed files with 22 additions and 18060 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

View File

@ -1,10 +0,0 @@
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.{js,json,.yml}]
charset = utf-8
indent_style = space
indent_size = 2

1
.gitattributes vendored
View File

@ -1 +0,0 @@
/.yarn/** linguist-vendored

View File

@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Run tests
run: yarn test
- uses: actions/setup-go@v2
with:
go-version: '^1.16.0'
- run: go version

8
.gitignore vendored
View File

@ -1,11 +1,7 @@
data/*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
# this is the binary
go-jamming
*.sublime-workspace

17980
.pnp.js generated

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +0,0 @@
yarnPath: ".yarn/releases/yarn-berry.cjs"

View File

@ -1,10 +1,12 @@
# serve-my-jams 🥞
# go-jammin' 🥞
> A minimalistic jamstack-augmented microservice for webmentions etc
> A minimalistic Go-powered jamstack-augmented microservice for webmentions etc
⚠️ **This is a fork of [https://github.com/wgroeneveld/serve-my-jams](serve-my-jams)**, the Node-powered original microservice, which is no longer being maintained.
**Are you looking for a way to DO something with this?** See https://github.com/wgroeneveld/jam-my-stack !
This is a set of minimalistic [Koa-based](https://koajs.com/) microservices that aid you in your IndieWeb Jamstack coolness 😎 (name-dropping). While [jam-my-stack](https://github.com/wgroeneveld/jam-my-stack) is a set of scripts used to run at checkin-time, this is a dymamic service that handles requests.
This is a set of minimalistic Go-based microservices that aid you in your IndieWeb Jamstack coolness 😎 (name-dropping). While [jam-my-stack](https://github.com/wgroeneveld/jam-my-stack) is a set of scripts used to run at checkin-time, this is a dymamic service that handles requests.
Inspect how it's used on https://brainbaking.com/ - usually, a `<link/>` in your `<head/>` suffices:

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/wgroeneveld/go-jamming
go 1.16

BIN
jsfork/.DS_Store vendored Normal file

Binary file not shown.

BIN
jsfork/src/.DS_Store vendored Normal file

Binary file not shown.

BIN
jsfork/test/.DS_Store vendored Normal file

Binary file not shown.

8
main.go Normal file
View File

@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
fmt.Println("it works!")
}