File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Original file line number Diff line number Diff line change @@ -5,11 +5,37 @@ if [ -z $folderName ]
5
5
then folderName=" kit-stack"
6
6
fi
7
7
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
+
8
14
git clone https://github.com/albbus-stack/kit-stack.git $folderName
9
15
cd $folderName
16
+
17
+ echo
18
+ echo -e " \033[1;32m🗑️\x20 Cleaning up files\033[0m"
19
+ echo
20
+
10
21
rm -rf .git LICENSE install.sh install.ps1
11
22
mv .env.local.example .env.local
23
+
24
+ echo
25
+ echo -e " \033[1;32m🥯 Installing dependencies\033[0m"
26
+ echo
27
+
12
28
bun install
29
+
30
+ echo
31
+ echo -e " \033[1;32m⚙️\x20 Running setup scripts\033[0m"
32
+ echo
33
+
13
34
bun db:generate
35
+ bun lang:build
14
36
bun env:sync
15
37
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
You can’t perform that action at this time.
0 commit comments