abdullahashfaqvirk commited on
Commit
704e2e9
·
1 Parent(s): 49af644

chore: add Makefile for install, run and format tasks

Browse files
Files changed (1) hide show
  1. Makefile +11 -0
Makefile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ install:
2
+ pip install --upgrade pip
3
+ pip install -r requirements.txt
4
+
5
+ run:
6
+ python app.py
7
+
8
+ format:
9
+ black *.py
10
+
11
+ all: install format