forked from braze-inc/braze-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
208 lines (176 loc) · 4.97 KB
/
Rakefile
File metadata and controls
208 lines (176 loc) · 4.97 KB
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
201
202
203
204
205
206
207
208
require 'fileutils'
require 'find'
require 'thread'
# File watching functionality
def watch_includes_folder
puts "Starting file watcher for _includes folder..."
load 'includes_watcher.rb'
watcher = IncludesWatcher.new
watcher.start
rescue Interrupt
puts "File watcher interrupted, shutting down..."
rescue => e
puts "File watcher error: #{e.message}"
end
def pipe(command)
output = ''
IO.popen(command) do |io|
until io.eof?
buffer = io.gets
output << buffer
puts buffer
end
end
output
end
task default: :serve
def jekyll_build(config_file = '_config.yml', lang = 'en')
public_folder = './public'
# puts `#{config_file}`
puts `bundle exec jekyll build --config #{config_file}`
if (lang != 'en')
index_file = File.join(public_folder, "index_#{lang}.html")
FileUtils.copy_file(index_file, File.join('_site', "index.html"))
FileUtils.copy_file(File.join("_site/docs/#{lang}", "404.html"), File.join('_site', "404.html"))
end
end
def jekyll_serve(config_file = '_config.yml')
if ENV["RACK_ENV"] == 'staging'
pipe "bundle exec jekyll s --port 5006 --config #{config_file}"
else
# Force a clean build of the site and the pipeline assets
puts `rm .jekyll-metadata`
# Start file watcher in a separate thread
watcher_thread = Thread.new do
watch_includes_folder
end
# Set up signal handlers to stop the watcher thread
Signal.trap('INT') do
puts "\nStopping Jekyll serve and file watcher..."
watcher_thread.raise Interrupt
exit 0
end
Signal.trap('TERM') do
puts "\nStopping Jekyll serve and file watcher..."
watcher_thread.raise Interrupt
exit 0
end
begin
pipe "bundle exec jekyll s --port 5006 --incremental --config #{config_file},_incremental_config.yml"
ensure
# Ensure the watcher thread is stopped when Jekyll exits
watcher_thread.raise Interrupt if watcher_thread.alive?
watcher_thread.join(2) # Wait up to 2 seconds for clean shutdown
end
end
end
namespace :docs_en do
config_file = './_config.yml'
task :index do
if ENV["SITE_URL"] == 'https://www.braze.com' && ENV["RACK_ENV"] == 'production'
puts `bundle exec jekyll algolia --config #{config_file}`
end
end
task build: [:index] do
jekyll_build(config_file, 'en')
end
task :serve do
jekyll_serve(config_file)
end
task :serve_with_watch do
jekyll_serve(config_file)
end
task :proxy_serve do
pipe 'bundle exec ruby proxy.rb'
end
end
namespace :lang do
task :index, [:lang] do |t, args|
config_file = "./_config.yml,./_lang/_config_#{args[:lang]}.yml"
if ENV["SITE_URL"] == 'https://www.braze.com' && ENV["RACK_ENV"] == 'production'
puts `bundle exec jekyll algolia --config #{config_file}`
end
end
task :build, [:lang] => [:index] do |t, args|
jekyll_build("./_config.yml,./_lang/_config_#{args[:lang]}.yml", args[:lang])
end
task :serve, [:lang] do |t, args|
jekyll_serve("./_config.yml,./_lang/_config_#{args[:lang]}.yml")
end
task :serve_with_watch, [:lang] do |t, args|
jekyll_serve("./_config.yml,./_lang/_config_#{args[:lang]}.yml")
end
task :proxy_serve, [:lang] do |t, args|
pipe "bundle exec ruby proxy.rb #{args[:lang]}"
end
end
namespace :assets do
task :precompile do
print 'no-op'
end
end
# Usage: rake "lang[:lang]" ie
# rake "lang[:fr]"
# rake "lang[:ja]"
multitask :lang, [:lang] => [
'lang:serve',
'lang:proxy_serve'
]
multitask serve: [
'docs_en:serve', 'docs_en:proxy_serve'
]
multitask en: [
'docs_en:serve', 'docs_en:proxy_serve'
]
task :fr do
Rake::Task["lang"].invoke('fr')
end
task :ja do
Rake::Task["lang"].invoke('ja')
end
task :ko do
Rake::Task["lang"].invoke('ko')
end
task :pt_br do
Rake::Task["lang"].invoke('pt-br')
end
task :es do
Rake::Task["lang"].invoke('es')
end
task :de do
Rake::Task["lang"].invoke('de')
end
task :fr_build do
Rake::Task["lang:build"].invoke('fr')
end
task :ja_build do
Rake::Task["lang:build"].invoke('ja')
end
task :ko_build do
Rake::Task["lang:build"].invoke('ko')
end
task :pt_br_build do
Rake::Task["lang:build"].invoke('pt-br')
end
task :es_build do
Rake::Task["lang:build"].invoke('es')
end
task :de_build do
Rake::Task["lang:build"].invoke('de')
end
# Convenience tasks for file watching
task :serve_with_test_watch do
Rake::Task["docs_en:serve_with_watch"].invoke
end
task :serve_with_lint_watch do
Rake::Task["docs_en:serve_with_watch"].invoke
end
task :serve_with_build_watch do
Rake::Task["docs_en:serve_with_watch"].invoke
end
# Usage examples:
# rake serve_with_test_watch # Serve with file watching (same as serve_with_watch)
# rake serve_with_lint_watch # Serve with file watching (same as serve_with_watch)
# rake serve_with_build_watch # Serve with file watching (same as serve_with_watch)
# rake docs_en:serve_with_watch # Serve English docs with file watching
# rake "lang:serve_with_watch[fr]" # Serve French docs with file watching