Skip to content

Commit

Permalink
added deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
papachristoumarios committed Nov 18, 2017
1 parent 3e3bc66 commit 8ad1749
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -13101,8 +13101,8 @@ article.contact .btn-primary:focus {
}

article.contact .btn-primary:hover {
background-color: #555555 !important;
border-color: #555555 !important;
background-color: #3c3b3b !important;
border-color: #3c3b3b !important;
}

article.contact .btn-primary:active,
Expand Down
1 change: 1 addition & 0 deletions public/js/contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

4 changes: 4 additions & 0 deletions resources/assets/js/contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
function submit() {
alert("dffasdfsd");

}
4 changes: 2 additions & 2 deletions resources/assets/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ article.contact {


.btn-primary:hover {
background-color: lighten($brand-secondary, 20%) !important;
border-color: lighten($brand-secondary, 20%) !important;
background-color: lighten($brand-secondary, 10%) !important;
border-color: lighten($brand-secondary, 10%) !important;
}

.btn-primary:active, .btn-primary:visited, .btn-primary:focus {
Expand Down
6 changes: 6 additions & 0 deletions serve_lan.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

export PORT="80"
export IP="$(hostname -I | cut -d' ' -f1)"
echo $PORT
sudo php artisan serve --host $IP --port $PORT

0 comments on commit 8ad1749

Please sign in to comment.