Akilan1999 / p2p-rendering-computation

p2p network to enable running distributed computation and rendering.
https://p2prc.akilan.io/
GNU General Public License v2.0
27 stars 9 forks source link

Flexible server #91

Closed Akilan1999 closed 1 year ago

Akilan1999 commented 1 year ago

The following PR works on extending your Go application with p2prc with really few lines of code.

Example

package main

import "github.com/Akilan1999/p2p-rendering-computation/abstractions"

func main() {
    // Initialize with base p2prc config files
    err := abstractions.Init("TEST")
    if err != nil {
        return
    }

    // start p2prc
    _, err = abstractions.Start()
    if err != nil {
        return
    }
}

Config package change log