Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LakeDropsDrupalDev
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker
LakeDropsDrupalDev
Commits
b719cb1a
Commit
b719cb1a
authored
2 months ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Add support for Drupal CMS
parent
1fba9bfe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!55
Merging develop into main
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
start.sh
+22
-15
22 additions, 15 deletions
start.sh
with
22 additions
and
15 deletions
start.sh
+
22
−
15
View file @
b719cb1a
...
...
@@ -122,14 +122,15 @@ function initialSetup {
echo
""
echo
"Options to start:"
echo
" 0 none: start with an empty container"
echo
" 1 LakeDrops Drupal 11 project template"
echo
" 2 LakeDrops Drupal 10 project template"
echo
" 3 drupal.org recommended project template (Drupal 11)"
echo
" 4 drupal.org recommended project template (Drupal 10)"
echo
" 5 Drupal's community project template (Drupal 11)"
echo
" 6 Drupal's community project template (Drupal 10)"
echo
" 7 Custom project template"
echo
" 8 Existing git repository"
echo
" 1 LakeDrops Drupal CMS"
echo
" 2 LakeDrops Drupal 11 project template"
echo
" 3 LakeDrops Drupal 10 project template"
echo
" 4 drupal.org recommended project template (Drupal 11)"
echo
" 5 drupal.org recommended project template (Drupal 10)"
echo
" 6 Drupal's community project template (Drupal 11)"
echo
" 7 Drupal's community project template (Drupal 10)"
echo
" 8 Custom project template"
echo
" 9 Existing git repository"
echo
""
echo
""
...
...
@@ -144,44 +145,50 @@ function initialSetup {
;;
1
)
PROJECT
=
"lakedrops/cms:1.0.x-dev"
create
break
;;
2
)
PROJECT
=
"lakedrops/d11-project"
SITE_INSTALL_ARGS
=
"--existing-config"
create
break
;;
2
)
3
)
PROJECT
=
"lakedrops/d10-project"
SITE_INSTALL_ARGS
=
"--existing-config"
create
break
;;
3
)
4
)
PROJECT
=
"drupal/recommended-project:^11"
create
break
;;
4
)
5
)
PROJECT
=
"drupal/recommended-project:^10"
create
break
;;
5
)
6
)
PROJECT
=
"drupal-composer/drupal-project:11.x-dev"
create
break
;;
6
)
7
)
PROJECT
=
"drupal-composer/drupal-project:10.x-dev"
create
break
;;
7
)
8
)
# shellcheck disable=SC2162
read
-p
"Custom project template: "
PROJECT
# shellcheck disable=SC2162
...
...
@@ -190,7 +197,7 @@ function initialSetup {
break
;;
8
)
9
)
# shellcheck disable=SC2162
read
-p
"Repository URL: "
REPOSITORY
if
[[
-n
"
${
REPOSITORY
}
"
]]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment