There was an error while loading. Please reload this page.
1 parent 13ac6bf commit 3390aefCopy full SHA for 3390aef
lib/tasks/start.rake
@@ -0,0 +1,13 @@
1
+namespace :start do
2
+ desc "Start Development server"
3
+ task :development do
4
+ exec "foreman start -f Procfile.dev"
5
+ end
6
+
7
+ desc "start Production Server"
8
+ task :production do
9
+ exec "YARN_PRODUCTION=true yarn run postinstall && foreman start"
10
11
+end
12
13
+task :start => "start:development"
0 commit comments