Skip to content

Commit

Permalink
Merge 555d0d6 into cbba3f7
Browse files Browse the repository at this point in the history
  • Loading branch information
ngmy committed Jan 1, 2021
2 parents cbba3f7 + 555d0d6 commit ef34403
Show file tree
Hide file tree
Showing 12 changed files with 1,001 additions and 7,517 deletions.
2 changes: 2 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export PATH=$PWD/laradockctl/bin:$PATH
export LARADOCKCTL_COMMAND_PATH=$PWD/.laradock/commands:$PWD/laradockctl/src/commands
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: ngmy
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: https://flattr.com/@ngmy
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "laradock"]
path = laradock
url = https://github.com/Laradock/laradock.git
[submodule "laradockctl"]
path = laradockctl
url = https://github.com/ngmy/laradockctl.git
9 changes: 9 additions & 0 deletions .laradock/commands/my/down.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash
set -Ceuo pipefail

local NAME='my:down'
local DESCRIPTION='Shut down my development environment'

handle() {
docker-compose down
}
11 changes: 11 additions & 0 deletions .laradock/commands/my/up.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
set -Ceuo pipefail

local NAME='my:up'
local DESCRIPTION='Start up my development environment'

handle() {
cp -f ../.laradock/env-development .env
docker-compose up -d --build workspace
docker-compose exec workspace composer install
}
Empty file added .laradock/data/.gitkeep
Empty file.

0 comments on commit ef34403

Please sign in to comment.