https://github.com/powerman/narada-plugin-go-service
https://github.com/powerman/narada-plugin-go-service
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/powerman/narada-plugin-go-service
- Owner: powerman
- Created: 2016-04-14T06:18:06.000Z (almost 10 years ago)
- Default Branch: doc
- Last Pushed: 2016-04-20T07:45:05.000Z (over 9 years ago)
- Last Synced: 2025-02-15T05:52:34.923Z (11 months ago)
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
Narada plugin: Go service
=========================
This repo contains extra files needed to add Go service for
https://github.com/powerman/Narada[Narada] projects.
There are different sets of files available in different branches:
master:: plugin files which you should merge into your project
doc:: (this branch) no plugin files, only documentation about this repo
== Install
Just merge this repo into your project's repo:
[source,sh]
----
git remote add narada-plugin-go-service -t master -m master \
-f https://github.com/powerman/narada-plugin-go-service.git
git merge narada-plugin-go-service
----
Then replace relative imports with absolute:
[source,sh]
----
perl -i -pe 's{"([.][.]/)+}{"'$(dirname $(go list ./cfg))'/}g' $(find -name '*.go')
----
== Documentation
Documentation is in your project's directory, see
https://github.com/powerman/narada-plugin-go-service/blob/master/doc/narada-plugin-go-service.adoc[doc/narada-plugin-go-service.adoc].