TheIsolator
1.0.0
An ActivityPub implementation for static websites. Built during SwampHacks 2019.
Install Ruby and Jekyll.
Install Go and Dep. Note: Please make sure to have the project with-in your Go src path.
For local development, first setup Jekyll:
cd jekyll
bundle exec jekyll serve
To run Go:
cd go
go run
to create and run a local Go executable:
cd go
go build
./build
To get all dependencies (Assuming Dep is already installed):
cd go
dep install
#there should be no error outputs, you should only see "Fetching sources"
#followed by download status indicators.
To add dependency (assuming dep is already installed) If youre using VS code, the GOlang extension will prevent you from testing if anything is actually compiling because it will automatically remove unused imports by default but, you can manually add and track the dependency using:
cd go
dep ensure -add [GITHUB URL/PACKAGE SRC]
# no feedback on this aside from "fetching packages",
#if there's errors it'll note them
This project is licensed under the MIT License - see the LICENSE.md file for details.