Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
compose.libre.sh
Manage
Activity
Members
Labels
Plan
Issues
18
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
libre.sh
compose.libre.sh
Merge requests
!188
Resolve "REPO mode to retrieve application recipe"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "REPO mode to retrieve application recipe"
187-repo-mode-to-retrieve-application-recipe
into
develop
Overview
0
Commits
5
Pipelines
0
Changes
2
Merged
Michel Memeteau
requested to merge
187-repo-mode-to-retrieve-application-recipe
into
develop
5 years ago
Overview
0
Commits
5
Pipelines
0
Changes
2
Expand
Closes
#187 (closed)
Edited
5 years ago
by
Michel Memeteau
👍
0
👎
0
Merge request reports
Compare
develop
version 4
6451e911
5 years ago
version 3
ba58e277
5 years ago
version 2
8aea5b59
5 years ago
version 1
b275794c
5 years ago
develop (base)
and
version 1
latest version
41d64fb5
5 commits,
5 years ago
version 4
6451e911
4 commits,
5 years ago
version 3
ba58e277
3 commits,
5 years ago
version 2
8aea5b59
2 commits,
5 years ago
version 1
b275794c
1 commit,
5 years ago
2 files
+
13
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
utils/provision
+
11
−
1
Options
@@ -103,7 +103,17 @@ function buy_domain_name () {
@@ -103,7 +103,17 @@ function buy_domain_name () {
}
}
function
application
()
{
function
application
()
{
git clone https://
${
arg_a
}
.git /data/domains/
${
arg_u
}
#We check if a APP_REPO_URL was specified
if
[
-z
${
APP_REPO_URL
:-}
]
;
then
warning
"NO repo URL specified, using argument as full URL"
git_url
=
https://
${
arg_a
}
.git
else
warning
"REPO specified, using argument as app name"
git_url
=
https://
${
APP_REPO_URL
}
/
${
arg_a
}
.git
fi
git clone
${
git_url
}
/data/domains/
${
arg_u
}
cd
/data/domains/
${
arg_u
}
cd
/data/domains/
${
arg_u
}
if
[
-f
./scripts/install
]
;
then
if
[
-f
./scripts/install
]
;
then
export
URL
=
${
arg_u
}
export
URL
=
${
arg_u
}
Loading