Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove kooldev/bash usage as we are now only on mac/linux #493

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading