I have a blockchain based on Ethereum, I will call it my testnet for now and I have a few nodes running and mining. All seems well so far, I am currently starting geth with several parameters
If I use this examples with different values,
geth --identity "MyNodeName" --rpc --rpcport "8080" --rpccorsdomain "*" --datadir "C:\chains\TestChain1" --port "30303" --nodiscover --rpcapi "db,eth,net,web3" --networkid 1999 init /path/to/CustomGenesis.json
I want the users of my geth to not have to type all these parameters in at the command line & I would also like to package my version of geth with my version of Mist. Infact I would rather not have the --nodiscover parameter there and let it find the other peers without the manual admin.addPeer("") being used.
Is there any example of this being done, if not can anyone point me to where I would embed these parameter values in the code so I can update the codebase and build a release.