Prathamesh Musale
ebaacb3733
Part of [Support running go-nitro node in/out of process in ipld-eth-server](https://www.notion.so/Support-running-go-nitro-node-in-out-of-process-in-ipld-eth-server-f592e29f0e5b474aa65db1509e5ddf1b) - Added in-process go-nitro node support - To be handled in upcoming PRs: - Out of process go-nitro node support to be added in an upcoming PR - Refactoring and remaining todos Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Reviewed-on: #256 Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to> Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
60 lines
3.1 KiB
Go
60 lines
3.1 KiB
Go
// Copyright © 2021 Vulcanize, Inc
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func addDatabaseFlags(command *cobra.Command) {
|
|
// database flags
|
|
command.PersistentFlags().String("database-name", "vulcanize_public", "database name")
|
|
command.PersistentFlags().Int("database-port", 5432, "database port")
|
|
command.PersistentFlags().String("database-hostname", "localhost", "database hostname")
|
|
command.PersistentFlags().String("database-user", "", "database user")
|
|
command.PersistentFlags().String("database-password", "", "database password")
|
|
|
|
// database flag bindings
|
|
viper.BindPFlag("database.name", command.PersistentFlags().Lookup("database-name"))
|
|
viper.BindPFlag("database.port", command.PersistentFlags().Lookup("database-port"))
|
|
viper.BindPFlag("database.hostname", command.PersistentFlags().Lookup("database-hostname"))
|
|
viper.BindPFlag("database.user", command.PersistentFlags().Lookup("database-user"))
|
|
viper.BindPFlag("database.password", command.PersistentFlags().Lookup("database-password"))
|
|
}
|
|
|
|
func addNitroFlags(command *cobra.Command) {
|
|
// nitro flags
|
|
command.PersistentFlags().String("nitro-pk", "", "nitro pk")
|
|
command.PersistentFlags().String("nitro-chain-pk", "", "nitro chainPk")
|
|
command.PersistentFlags().String("nitro-chain-url", "", "nitro chainUrl")
|
|
command.PersistentFlags().String("nitro-na-address", "", "nitro naAddress")
|
|
command.PersistentFlags().String("nitro-vpa-address", "", "nitro vpaAddress")
|
|
command.PersistentFlags().String("nitro-ca-address", "", "nitro caAddress")
|
|
command.PersistentFlags().Bool("nitro-use-durable-store", false, "nitro useDurableStore")
|
|
command.PersistentFlags().String("nitro-durable-store-folder", "", "nitro durableStoreFolder")
|
|
|
|
// nitro flag bindings
|
|
viper.BindPFlag("nitro.pk", command.PersistentFlags().Lookup("nitro-pk"))
|
|
viper.BindPFlag("nitro.chainPk", command.PersistentFlags().Lookup("nitro-chain-pk"))
|
|
viper.BindPFlag("nitro.chainUrl", command.PersistentFlags().Lookup("nitro-chain-url"))
|
|
viper.BindPFlag("nitro.naAddress", command.PersistentFlags().Lookup("nitro-na-address"))
|
|
viper.BindPFlag("nitro.vpaAddress", command.PersistentFlags().Lookup("nitro-vpa-address"))
|
|
viper.BindPFlag("nitro.caAddress", command.PersistentFlags().Lookup("nitro-ca-address"))
|
|
viper.BindPFlag("nitro.useDurableStore", command.PersistentFlags().Lookup("nitro-use-durable-store"))
|
|
viper.BindPFlag("nitro.durableStoreFolder", command.PersistentFlags().Lookup("nitro-durable-store"))
|
|
}
|