mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-26 01:35:07 +00:00
39 lines
820 B
Bash
Executable File
39 lines
820 B
Bash
Executable File
#!/usr/bin/expect -f
|
|
|
|
# Configure timeout for each expect command
|
|
set timeout 10
|
|
|
|
set random_number [lindex $argv 0]
|
|
|
|
# Start your main script
|
|
set env(PATH) "$env(WORKING_DIR)/mocks:$env(PATH)"
|
|
|
|
spawn bash ../../noco.sh
|
|
|
|
# Respond to script prompts
|
|
expect "Enter the IP address or domain name for the NocoDB instance (default: localhost):"
|
|
send "${random_number}.ssl.nocodb.dev\r"
|
|
|
|
expect "Show Advanced Options*"
|
|
send "y\r"
|
|
|
|
expect "Do you want to configure SSL*"
|
|
send "y\r"
|
|
|
|
expect "Choose Community or Enterprise Edition*"
|
|
send "\r"
|
|
|
|
expect "Do you want to enabled Redis for caching*"
|
|
send "Y\r"
|
|
|
|
expect "Do you want to enabled Watchtower for automatic updates*"
|
|
send "\r"
|
|
|
|
expect "How many instances of NocoDB do you want to run*"
|
|
send "\r"
|
|
|
|
expect "Do you want to start the management menu*"
|
|
send "N\r"
|
|
|
|
expect eof
|