TheIsolator
1.0.0
静态网站的 ActivityPub 实现。在 SwampHacks 2019 期间构建。
安装 Ruby 和 Jekyll。
安装 Go 和 Dep。注意:请确保该项目位于您的 Go src 路径中。
对于本地开发,首先设置 Jekyll:
cd jekyll
bundle exec jekyll serve
运行Go:
cd go
go run
创建并运行本地 Go 可执行文件:
cd go
go build
./build
获取所有依赖项(假设已安装 Dep):
cd go
dep install
# there should be no error outputs, you should only see "Fetching sources"
# followed by download status indicators.
添加依赖项(假设已安装 dep)如果您使用 VS code,GOlang 扩展将阻止您测试是否有任何内容正在实际编译,因为默认情况下它会自动删除未使用的导入,但是您可以使用以下命令手动添加和跟踪依赖项:
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
该项目已根据 MIT 许可证获得许可 - 有关详细信息,请参阅 LICENSE.md 文件。