-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
67 lines (43 loc) · 1.07 KB
/
makefile
File metadata and controls
67 lines (43 loc) · 1.07 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
CURRENT_BRANCH=nelson
MASTER_BRANCH=main
# Commits everything to the current branch and merges it to master
#parameters:
# m: commit message
poh:
git add --all
git commit -m "${m} :${emoji}:"
git push origin HEAD
pohn:
make poh m="${m}" emoji="tada"
pohf:
make poh m="${m}" emoji="hammer"
poha:
make poh m="${m}" emoji="goberserk"
pohg:
make poh m="${m}" emoji="godmode"
merp:
git checkout ${MASTER_BRANCH}
git merge ${CURRENT_BRANCH}
git pull
git push origin HEAD
git checkout ${CURRENT_BRANCH}
s-front:
cd frontend && cd ecommerce && npm install --legacy-peer-deps
cd frontend && cd ecommerce && npm run dev
# Use this one for running the Sanity Admin backend that will be located at:
s-sanity:
cd backend && cd ecommerce && sanity start
m-sanity:
cd backend && cd ecommerce && sanity manage
set-sanity:
npm install -g @sanity/cli
sanity init --coupon javascriptmastery2022
push:
git pull
git add *
git commit -m "${m} :"
git push
install:
pip install streamlit && pip install plotly
show_dashboard:
cd streamlit-visuals && streamlit run About.py