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 文件。