Skip to content
Open
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
339 changes: 0 additions & 339 deletions LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions README.md

This file was deleted.

107 changes: 0 additions & 107 deletions composer.json

This file was deleted.

Empty file removed config/default/default/.gitkeep
Empty file.
Empty file removed config/default/local/.gitkeep
Empty file.
Empty file removed config/default/production/.gitkeep
Empty file.
3 changes: 0 additions & 3 deletions config_split/config_ignore.settings.yml

This file was deleted.

13 changes: 0 additions & 13 deletions config_split/config_split.config_split.default.yml

This file was deleted.

13 changes: 0 additions & 13 deletions config_split/config_split.config_split.local.yml

This file was deleted.

13 changes: 0 additions & 13 deletions config_split/config_split.config_split.production.yml

This file was deleted.

58 changes: 0 additions & 58 deletions docker-compose.yaml

This file was deleted.

13 changes: 0 additions & 13 deletions docker-sync.yml

This file was deleted.

1 change: 0 additions & 1 deletion drush/README.md

This file was deleted.

38 changes: 0 additions & 38 deletions drush/policy.drush.inc

This file was deleted.

68 changes: 0 additions & 68 deletions makefile

This file was deleted.

15 changes: 0 additions & 15 deletions phpunit.xml.dist

This file was deleted.

20 changes: 20 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

read -p "Hello, let's spin up your Drupal 8 site. What should we name it? " sitename

echo "Hold while we prepare the magic..."

composer create-project codekoalas/koality-drupal:8.x-dev $sitename --stability dev --no-interaction

fin up

read -p "Would you like to generate a custom theme?" theme_check

if [[ $theme_check == 'y' || $input == 'Y']]; then
cd docroot/themes/custom
npm install npx
npx -p yo -p generator-koality-theme -c 'yo koality-theme'
fi

echo 'Enjoy your new drupal site at http://$sitename.docksal'

Loading