-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·63 lines (58 loc) · 2.82 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
echo "Silica Configuration Utility"
echo ""
if [ ! -f .is_setup ]; then
echo "We'll ask you a few questions and set the basics up for you!"
echo "Please read the README file for a complete list of dependencies and how to install them."
echo "Give us a second to install the Python dependencies."
pip3 install -r requirements.txt
if [ $? -eq 2 ]; then
echo "Error: Something went wrong. We may need root to continue. Please put in your password to continue."
sudo pip3 install -r requirements.txt
if [ $? -eq 2 ]; then
echo "Error: Cannot install Python dependencies. Check your permissions and try again."
exit
fi
fi
echo "Installed all required packages! Now, just a few questions about you."
echo ""
printf "What should your repo be called? "
read silica_repo_name
printf "Can you briefly describe what your repo is about? "
read silica_repo_description
printf "What domain are you going to host the repo on (don't include https://, just the domain)? "
read silica_repo_cname
printf "What is *your* name? "
read silica_repo_maintainer_name
printf "What's your email? "
read silica_repo_maintainer_email
printf "With Sileo, you can customize your repo's tint color. Can you provide a hex code to do so? "
read silica_repo_tint
printf "Would you like Silica to automatically push the repo to a Git server when run? (true/false) "
read silica_auto_git
mkdir "Packages"
printf "{
\"name\": \"$silica_repo_name\",
\"description\": \"$silica_repo_description\",
\"tint\": \"$silica_repo_tint\",
\"cname\": \"$silica_repo_cname\",
\"maintainer\": {
\"name\": \"$silica_repo_maintainer_name\",
\"email\": \"$silica_repo_maintainer_email\"
},
\"automatic_git\": \"$silica_auto_git\"
}" > Styles/settings.json
echo ""
echo "Thank you! Now let us generate you some GPG keys. Keep these somewhere safe or you may not be able to edit your repo anymore!"
echo " ENTROPY NOTICE: Please do stuff in the meantime like spam some keys or wiggling your mouse. We need entropy!"
gpg --batch --gen-key util/gpg.batchgen
echo "Exported key into your GPG keyring. This computer is the only computer that can be used for Silica (under default settings)."
echo ""
echo "Remember: for GitHub Pages, you have to go into your repository's settings on github.com and enable GitHub Pages for /docs."
echo "Silica was successfully configured!"
echo ""
echo "To add packages to your repo, take a look at the pre-bundled file in Packages/ or use the UI to manage/create them from DEBs."
touch .is_setup
else
echo "Silica has already been set up. If you are moving machines, please delete .is_setup and ensure the GPG keyring is carried over. Aborting..."
fi