An open API service indexing awesome lists of open source software.

https://github.com/powerman/narada-plugin-go-service


https://github.com/powerman/narada-plugin-go-service

Last synced: 11 months ago
JSON representation

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].