From e21465b1eb73f2267507ecc763be90b7d034162b Mon Sep 17 00:00:00 2001 From: Akilan Date: Fri, 14 Jul 2023 16:49:43 +0100 Subject: [PATCH] modified README files and changed version to v2.0.0 --- README.md | 24 ++++++++++++++++++------ main.go | 30 +++++++++++++++--------------- 2 files changed, 33 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 71ee237..81174c2 100644 --- a/README.md +++ b/README.md @@ -49,22 +49,34 @@ This project aims to create a peer to peer (p2p) network, where a user can use t ```go package main -import "github.com/Akilan1999/p2p-rendering-computation/abstractions" +import ( + "github.com/Akilan1999/p2p-rendering-computation/abstractions" + "os" +) func main() { - // Initialize with base p2prc config files - err := abstractions.Init("TEST") - if err != nil { - return + // check if the config file exists + if _, err := os.Stat("config.json"); err != nil { + // Initialize with base p2prc config files + _, err := abstractions.Init("TEST", nil) + if err != nil { + return + } } // start p2prc - _, err = abstractions.Start() + _, err := abstractions.Start() if err != nil { return } } ``` + +### Export once this is added export P2PRC as environment paths +``` +export P2PRC= +export PATH=:${PATH} +``` [Read more](Docs/Abstractions.md) ... ## Installation from source diff --git a/main.go b/main.go index aa9542f..3607d92 100644 --- a/main.go +++ b/main.go @@ -1,15 +1,15 @@ package main import ( - "log" - "os" + "log" + "os" - "github.com/Akilan1999/p2p-rendering-computation/cmd" - "github.com/urfave/cli/v2" + "github.com/Akilan1999/p2p-rendering-computation/cmd" + "github.com/urfave/cli/v2" ) // VERSION specifies the version of the platform -var VERSION = "1.5.0" +var VERSION = "2.0.0" var mode string // Varaibles if mode is client @@ -17,15 +17,15 @@ var OS, Pull_location, Run_script string var List_servers, Ip_table bool func main() { - app := cli.NewApp() - app.Name = "p2p-rendering-computation" - app.Usage = "p2p cli application to create and access VMs in other servers" - app.Version = VERSION - app.Flags = cmd.AppConfigFlags - app.Action = cmd.CliAction + app := cli.NewApp() + app.Name = "p2p-rendering-computation" + app.Usage = "p2p cli application to create and access VMs in other servers" + app.Version = VERSION + app.Flags = cmd.AppConfigFlags + app.Action = cmd.CliAction - err := app.Run(os.Args) - if err != nil { - log.Fatal(err) - } + err := app.Run(os.Args) + if err != nil { + log.Fatal(err) + } }