mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
fix env key generation
This commit is contained in:
parent
4aed6c4625
commit
4358b1236c
|
@ -41,12 +41,12 @@ info "downloaded successfully"
|
||||||
|
|
||||||
function gen_dotenv()
|
function gen_dotenv()
|
||||||
{
|
{
|
||||||
read -p "Enter your MAX API key: " api_key
|
read -p "Enter your Binance API key: " api_key
|
||||||
read -p "Enter your MAX API secret: " api_secret
|
read -p "Enter your Binance API secret: " api_secret
|
||||||
echo "Generating your .env.local file..."
|
echo "Generating your .env.local file..."
|
||||||
cat <<END > .env.local
|
cat <<END > .env.local
|
||||||
MAX_API_KEY=$api_key
|
BINANCE_API_KEY=$api_key
|
||||||
MAX_API_SECRET=$api_secret
|
BINANCE_API_SECRET=$api_secret
|
||||||
END
|
END
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user