-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathescs.sh
76 lines (68 loc) · 2.42 KB
/
escs.sh
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
64
65
66
67
68
69
70
71
72
73
74
75
##############################################################################
# Push django-onesignal staging branch.
cd ~/projects/django-onesignal-code
# clean up all .pyc files.
find . -name "*.pyc" -exec rm -f {} \;
git status
git add *
git commit -a
git push -u origin staging
#############################################################################
# Push django-onesignal on master.
cd ~/projects/django-onesignal-code
# clean up all .pyc files.
find . -name "*.pyc" -exec rm -f {} \;
git status
git add *
git commit -a
git push -u origin master
##############################################################################
# Merge staging into master.
git checkout master
git merge staging
git push -u origin master
git checkout staging
##############################################################################
# Merge master into staging.
git checkout staging
git merge master
git push -u origin staging
git checkout staging
##############################################################################
# Create staging branch.
cd ~/projects/django-onesignal-code
git branch -a
git checkout -b staging
git push --set-upstream origin staging
##############################################################################
# create releases.
git tag -a v1.0.0 -m 'Initial release'
git push origin : v1.0.0
git tag -a v2.0.0 -m 'Running on django 2.'
git push origin : v2.0.0
##############################################################################
# Upload the package.
python setup.py sdist register upload
rm -fr dist
##############################################################################
# Create demo project.
cd ~/projects/
django-admin startproject demo django-onesignal-code
##############################################################################
# Make migrations for the app.
cd ~/projects/django-onesignal-code
python manage.py makemigrations onesignal
#####k#########################################################################
# create django-onesignal virtualenv.
cd ~/.virtualenvs/
ls -la
virtualenv django-onesignal -p python
##############################################################################
# Install requirements.
cd ~/projects/django-onesignal-code
pip install -r requirements.txt
#####k#########################################################################
# activate django-onesignal virtualenv.
cd ~/.virtualenvs/
source django-onesignal/bin/activate
cd ~/projects/django-onesignal-code