forked from theme-next/theme-next.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexo-theme-next-autodeploy.sh
200 lines (165 loc) · 7.62 KB
/
hexo-theme-next-autodeploy.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/bin/sh
# ============================================================== #
# Shell script to autodeploy Hexo & NexT & NexT website source.
# ============================================================== #
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:$PATH
export PATH
# https://en.wikipedia.org/wiki/ANSI_escape_code
#red='\033[0;31m'
#green='\033[0;32m'
#brown='\033[0;33m'
#blue='\033[0;34m'
#purple='\033[0;35m'
cyan='\033[0;36m'
#lgray='\033[0;37m'
#dgray='\033[1;30m'
lred='\033[1;31m'
lgreen='\033[1;32m'
yellow='\033[1;33m'
lblue='\033[1;34m'
lpurple='\033[1;35m'
lcyan='\033[1;36m'
white='\033[1;37m'
norm='\033[0m'
bold='\033[1m'
# NexT website repo directory
DIR_NAME="next-source"
echo
echo "=============================================================="
echo " ${yellow}Checking starting directory structure...${norm}"
echo "=============================================================="
echo "${lcyan}`pwd`${norm}"
du -sh
du -sh *
echo
echo "=============================================================="
echo " ${lgreen}Checking Node.js & NPM version...${norm}"
echo "=============================================================="
echo "${yellow}Node version:${norm} ${lcyan}`node -v`${norm}"
echo "${yellow}NPM version:${norm} ${lcyan}`npm -v`${norm}"
echo
echo "=============================================================="
echo " ${lgreen}Installing Hexo & NPM modules...${norm}"
echo "=============================================================="
npm install --silent
echo
echo "=============================================================="
echo " ${lgreen}Updating or Installing NexT theme & Needed modules...${norm}"
echo "=============================================================="
echo "${yellow}NexT:${norm} ${lcyan}`git -C themes/next pull || git clone https://github.com/theme-next/hexo-theme-next themes/next`${norm}"
echo
echo "=============================================================="
echo " ${yellow}Checking Hexo version...${norm}"
echo "=============================================================="
alias hexo="npx hexo"
hexo -v
cat package.json
echo
echo "=============================================================="
echo " ${lpurple}Creating Schemes directory...${norm}"
echo "=============================================================="
mkdir -v schemes
echo
echo "=============================================================="
echo " ${lpurple}Generating content for 'muse.theme-next.org' subdomain...${norm}"
echo "=============================================================="
hexo config url https://muse.theme-next.org
echo "${yellow}Setted url:${norm} ${lcyan}`hexo config url`${norm}"
hexo config theme_config.scheme Muse
echo "${yellow}Setted scheme:${norm} ${lcyan}`hexo config theme_config.scheme`${norm}"
hexo config theme_config.sidebar.position right
echo "${yellow}Setted sidebar position:${norm} ${lcyan}`hexo config theme_config.sidebar.position`${norm}"
hexo config theme_config.back2top.sidebar false
echo "${yellow}Setted back2top in sidebar:${norm} ${lcyan}`hexo config theme_config.back2top.sidebar`${norm}"
hexo clean && hexo g --silent
echo "${lred}`mv -v public schemes/muse`${norm}"
echo
echo "=============================================================="
echo " ${lpurple}Generating content for 'mist.theme-next.org' subdomain...${norm}"
echo "=============================================================="
hexo config url https://mist.theme-next.org
echo "${yellow}Setted url:${norm} ${lcyan}`hexo config url`${norm}"
hexo config theme_config.scheme Mist
echo "${yellow}Setted scheme:${norm} ${lcyan}`hexo config theme_config.scheme`${norm}"
hexo config theme_config.sidebar.position right
echo "${yellow}Setted sidebar position:${norm} ${lcyan}`hexo config theme_config.sidebar.position`${norm}"
hexo config theme_config.back2top.sidebar false
echo "${yellow}Setted back2top in sidebar:${norm} ${lcyan}`hexo config theme_config.back2top.sidebar`${norm}"
hexo clean && hexo g --silent
echo "${lred}`mv -v public schemes/mist`${norm}"
echo
echo "=============================================================="
echo " ${lpurple}Generating content for 'pisces.theme-next.org' subdomain...${norm}"
echo "=============================================================="
hexo config url https://pisces.theme-next.org
echo "${yellow}Setted url:${norm} ${lcyan}`hexo config url`${norm}"
hexo config theme_config.scheme Pisces
echo "${yellow}Setted scheme:${norm} ${lcyan}`hexo config theme_config.scheme`${norm}"
hexo config theme_config.sidebar.position left
echo "${yellow}Setted sidebar position:${norm} ${lcyan}`hexo config theme_config.sidebar.position`${norm}"
hexo config theme_config.back2top.sidebar true
echo "${yellow}Setted back2top in sidebar:${norm} ${lcyan}`hexo config theme_config.back2top.sidebar`${norm}"
hexo clean && hexo g --silent
echo "${lred}`mv -v public schemes/pisces`${norm}"
echo
echo "=============================================================="
echo " ${lpurple}Prepairing content for main 'theme-next.org' domain...${norm}"
echo "=============================================================="
hexo config url https://theme-next.org
echo "${yellow}Setted url:${norm} ${lcyan}`hexo config url`${norm}"
hexo config theme_config.scheme Gemini
echo "${yellow}Setted scheme:${norm} ${lcyan}`hexo config theme_config.scheme`${norm}"
hexo config theme_config.sidebar.position left
echo "${yellow}Setted sidebar position:${norm} ${lcyan}`hexo config theme_config.sidebar.position`${norm}"
hexo config theme_config.back2top.sidebar true
echo "${yellow}Setted back2top in sidebar:${norm} ${lcyan}`hexo config theme_config.back2top.sidebar`${norm}"
hexo clean && hexo g --silent
echo "${yellow}robots.txt:${norm}"
echo "User-agent: *
Disallow: /page/*/
Disallow: /archives/*
Disallow: /schemes/*
Host: https://theme-next.org" > public/robots.txt
cat public/robots.txt
echo
echo "=============================================================="
echo " ${lpurple}Moving all schemes to public directory...${norm}"
echo "=============================================================="
echo "${lred}`mv -v schemes public`${norm}"
echo
echo "=============================================================="
echo " ${yellow}Checking 'repo' directory structure...${norm}"
echo "=============================================================="
echo "${lcyan}`pwd`${norm}"
du -sh
du -sh *
echo
echo "=============================================================="
echo " ${yellow}Checking '$DIR_NAME' directory structure...${norm}"
echo "=============================================================="
mkdir -vp $DIR_NAME
echo "${lred}`mv -v public $DIR_NAME`${norm}"
cd $DIR_NAME
echo "${lcyan}`pwd`${norm}"
du -sh
du -sh *
echo
echo "=============================================================="
echo " ${yellow}Checking 'public' directory structure...${norm}"
echo "=============================================================="
cd public
echo "${lcyan}`pwd`${norm}"
du -sh
du -sh *
echo
echo "=============================================================="
echo " ${yellow}Checking 'schemes' directory structure...${norm}"
echo "=============================================================="
cd schemes
echo "${lcyan}`pwd`${norm}"
du -sh
du -sh *
echo
echo "=============================================================="
echo " ${lgreen}Done. Beginning to deploy site...${norm}"
echo "=============================================================="