Skip to content

Commit

Permalink
Merge pull request #493 from kool-dev/windows-leftover
Browse files Browse the repository at this point in the history
remove kooldev/bash usage as we are now only on mac/linux
  • Loading branch information
fabriciojs authored Jan 7, 2024
2 parents e72ee8c + 862fddb commit a65fdd9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/1-Getting-Started/3-How-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ scripts:
- kool run yarn install

before-start:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env
- kool run yarn install
```
Expand Down
2 changes: 1 addition & 1 deletion docs/1-Getting-Started/4-Starting-new-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ scripts:
yarn: kool docker kooldev/node:20 yarn

setup:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env
- kool start
- kool run composer install
- kool run yarn install
Expand Down
2 changes: 1 addition & 1 deletion docs/2-Presets/CodeIgniter.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ scripts:
phpunit: kool exec app php ./bin/phpunit

setup:
- kool docker kooldev/bash -c "cp env .env"
- cp env .env
- kool start
- kool run composer install
- kool run spark key:generate
Expand Down
2 changes: 1 addition & 1 deletion docs/2-Presets/Laravel.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ scripts:
- kool run yarn install

before-start:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env
- kool run yarn install
```
Expand Down
2 changes: 1 addition & 1 deletion presets/codeigniter/codeigniter-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ scripts:
mysql: kool exec -e MYSQL_PWD=$DB_PASSWORD database mysql -uroot

setup:
- kool docker kooldev/bash -c "cp env .env"
- cp env .env
- kool start
- kool run composer install
- kool run spark key:generate
Expand Down
2 changes: 1 addition & 1 deletion templates/scripts/laravel+octane+roadrunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ scripts:
- kool run artisan migrate:fresh --seed

before-start:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env
- kool docker kooldev/php:8.2-node composer install
- kool docker kooldev/php:8.2-node php artisan key:generate
2 changes: 1 addition & 1 deletion templates/scripts/laravel+octane+swoole.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ scripts:
- kool run artisan migrate:fresh --seed

before-start:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env
- kool docker kooldev/php:8.2-swoole composer install
- kool docker kooldev/php:8.2-swoole php artisan key:generate
2 changes: 1 addition & 1 deletion templates/scripts/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ scripts:
- kool run artisan migrate:fresh --seed

before-start:
- kool docker kooldev/bash -c "cp .env.example .env"
- cp .env.example .env

0 comments on commit a65fdd9

Please sign in to comment.