mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
342 B
23 lines
342 B
4 years ago
|
#!/bin/bash
|
||
|
# Ask the user for their name
|
||
|
|
||
|
echo Enter database type
|
||
|
read db
|
||
|
|
||
|
echo Enter database host
|
||
|
read host
|
||
|
|
||
|
echo Enter database port
|
||
|
read port
|
||
|
|
||
|
echo Enter database username
|
||
|
read username
|
||
|
|
||
|
echo Enter database password
|
||
|
read password
|
||
|
|
||
|
echo Enter database database
|
||
|
read database
|
||
|
|
||
|
echo "$db://$host:$port?u=$username&p=$password&d=$database"
|