modified README files and changed version to v2.0.0

This commit is contained in:
2023-07-14 16:49:43 +01:00
parent fb606cf4ff
commit e21465b1eb
2 changed files with 33 additions and 21 deletions

View File

@@ -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=<PROJECT PATH>
export PATH=<PROJECT PATH>:${PATH}
```
[Read more](Docs/Abstractions.md) ...
## Installation from source

30
main.go
View File

@@ -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)
}
}