Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 413a874

Browse filesBrowse files
authored
Added prints to the install script
1 parent f503f2f commit 413a874
Copy full SHA for 413a874

File tree

Expand file treeCollapse file tree

1 file changed

+26
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+26
-0
lines changed

‎install.sh

Copy file name to clipboardExpand all lines: install.sh
+26Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,37 @@ if [ -z $folderName ]
55
then folderName="kit-stack"
66
fi
77

8+
echo
9+
echo -e " _ _ _ _ _\n| | __(_)| |_ ___ | |_ __ _ ___ | | __ \n| |/ /| || __| / __|| __| / _\` | / __|| |/ / \n| < | || |_ \__ \| |_ | (_| || (__ | < \n|_|\_\|_| \__| |___/ \__| \__,_| \___||_|\_\\"
10+
echo
11+
echo -e "\033[1;32m🐙 Cloning into $folderName\033[0m"
12+
echo
13+
814
git clone https://github.com/albbus-stack/kit-stack.git $folderName
915
cd $folderName
16+
17+
echo
18+
echo -e "\033[1;32m🗑️\x20 Cleaning up files\033[0m"
19+
echo
20+
1021
rm -rf .git LICENSE install.sh install.ps1
1122
mv .env.local.example .env.local
23+
24+
echo
25+
echo -e "\033[1;32m🥯 Installing dependencies\033[0m"
26+
echo
27+
1228
bun install
29+
30+
echo
31+
echo -e "\033[1;32m⚙️\x20 Running setup scripts\033[0m"
32+
echo
33+
1334
bun db:generate
35+
bun lang:build
1436
bun env:sync
1537
git init
38+
39+
echo
40+
echo -e "\033[1;32m✔️\x20 Setup completed!\033[1;33m Cd into $folderName, fill in your Supabase env keys and run \`bun dev\`\033[0m"
41+
echo

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.