Skip to content

Commit 725ade9

Browse files
committed
piencrypt shell scripts
1 parent 7ca4c91 commit 725ade9

8 files changed

Lines changed: 37 additions & 18 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ web/data.py
44
piencrypt/__pycache__/
55
Helper/
66
Test/__pycache__/
7-
Test/data.py
7+
Test/data.py
8+
build/

Script/build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#build package and push it to pypi
22
clear
3+
cd ..
4+
echo "Starting Pie Test..";
5+
cd Test
6+
python pie_test.py;
7+
echo "Test completed"
8+
cd ..
39
echo "Starting package build...";
410
python setup.py sdist bdist_wheel;
511
twine upload dist/*;

Script/commit.sh

Lines changed: 0 additions & 5 deletions
This file was deleted.

Script/git_push.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
clear
2+
cd ..
3+
echo "Starting Pie Test..";
4+
cd Test
5+
python pie_test.py;
6+
echo "Test completed"
7+
cd ..
8+
echo "Tracking files..";
9+
git add .;
10+
git commit -m "piencrypt shell scripts";
11+
echo "Commit completed";
12+
git push origin master;
13+
echo "Push Successfull";

Script/heroku_push.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
clear
2+
cd ..
3+
echo "Starting Pie Test..";
4+
cd Test
5+
python pie_test.py;
6+
echo "Test completed"
7+
cd ..
8+
cd web
9+
echo "Tracking files..";
10+
git add .;
11+
git commit -m "piencrypt webapp";
12+
echo "Commit completed";
13+
git push heroku master;
14+
echo "Deployment Successfull";
15+
cd ..

build.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

commit.sh

Lines changed: 0 additions & 4 deletions
This file was deleted.

web

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 7c2a7d8632c1555aecf4f01e1c12b72462f021d6
1+
Subproject commit 42f8504842dc04c493db87896e8c17de1e893c62

0 commit comments

Comments
 (0)