Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added a task file to setup frontend (#857)
  • Loading branch information
MarcoAguirre authored May 11, 2022
commit f3805cc6694cde211867d412abea6f68aa92cd53
11 changes: 11 additions & 0 deletions tasks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from invoke import task

@task
def set_environment(c, command):
try:
c.run('npm install')
c.run('make build')
c.run('make run')
c.run('make logs')
except:
print('\n Something went wrong')