We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c960bc4 commit 4b8c5dbCopy full SHA for 4b8c5db
tasks.py
@@ -0,0 +1,11 @@
1
+from invoke import task
2
+
3
+@task
4
+def set_environment(c, command):
5
+ try:
6
+ c.run('npm install')
7
+ c.run('make build')
8
+ c.run('make run')
9
+ c.run('make logs')
10
+ except:
11
+ print('\n Something went wrong')
0 commit comments