Skip to content

Commit 6fd9015

Browse files
committed
update deploy scripts
1 parent 0b43bd0 commit 6fd9015

File tree

92 files changed

+63653
-783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+63653
-783
lines changed

.dockerignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
.git/
22
node_modules/
33
vendor/
4-
public/css/
5-
public/js/
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@ APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true
55
APP_LOG_LEVEL=debug
6-
APP_URL=http://127.0.0.1:8010
6+
APP_URL=http://localhost
7+
APP_LOCALE=en
78

89
DB_CONNECTION=pgsql
9-
DB_HOST=db
10+
DB_HOST=gitpab-db
1011
DB_PORT=5432
1112
DB_DATABASE=gitpab
1213
DB_USERNAME=gitpab
@@ -28,8 +29,16 @@ MAIL_PORT=2525
2829
MAIL_USERNAME=null
2930
MAIL_PASSWORD=null
3031
MAIL_ENCRYPTION=null
32+
MAIL_FROM_ADDRESS=hello@example.com
3133

3234
PUSHER_APP_ID=
3335
PUSHER_APP_KEY=
3436
PUSHER_APP_SECRET=
3537
PUSHER_APP_CLUSTER=mt1
38+
39+
HTTP_PORT=8000
40+
41+
# @todo: edit variables below
42+
GITLAB_HOST=https://gitlab.com/
43+
GITLAB_PRIVATE_TOKEN=your_gitlab_token
44+
GITLAB_RESTRICTIONS_PROJECT_IDS=1111,2222,3333

.env.example

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,9 @@ PUSHER_APP_KEY=
3636
PUSHER_APP_SECRET=
3737
PUSHER_APP_CLUSTER=mt1
3838

39-
#GITLAB_PRIVATE_TOKEN=your_gitlab_token
40-
#GITLAB_RESTRICTIONS_PROJECT_IDS=1111,2222,3333
39+
HTTP_PORT=8000
40+
41+
# @todo: edit variables below
42+
GITLAB_HOST=https://gitlab.com/
43+
GITLAB_PRIVATE_TOKEN=your_gitlab_token
44+
GITLAB_RESTRICTIONS_PROJECT_IDS=1111,2222,3333

app/Model/Service/Eloquent/EloquentServiceAbstract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function store(array $attributes)
7575
try {
7676
$result = $this->repository->create($attributes);
7777
}
78-
catch (QueryException $e) {
78+
catch (QueryException $e) {
7979
// Record exists
8080
if ($e->getCode() == 23505) {
8181
$pk = $this->repository->getPkFieldName();

0 commit comments

Comments
 (0)