Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-meta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-meta
Commits
3873bde4
Commit
3873bde4
authored
2 years ago
by
Daniel Bimschas
Browse files
Options
Downloads
Patches
Plain Diff
HOLI-1785: address review and some minor improvements
parent
8b6f485f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
init.sh
+13
-2
13 additions, 2 deletions
init.sh
mprocs-local-backend.json
+6
-4
6 additions, 4 deletions
mprocs-local-backend.json
with
19 additions
and
6 deletions
init.sh
+
13
−
2
View file @
3873bde4
...
...
@@ -36,7 +36,7 @@ fi
isAvailable nvm
||
isAvailable nodenv
||
{
echo
>
&2
"Neither nvm nor nodenv are installed. Please install one of them according to README.md and run
$0
again afterwards"
;
exit
1
;
}
ensureAvailable ory
ensureAvailable emulator
#
ensureAvailable emulator
ensureAvailable docker-compose
# dependencies we can auto-install
...
...
@@ -57,6 +57,9 @@ popd
git clone git@gitlab.com:holisticfoundation/holi-okuna.git holi-okuna
>
/dev/null 2>&1
||
true
pushd
holi-okuna
direnv allow
.
source
.venv/bin/activate
pip
install
-r
requirements-cli-only.txt
pip
install
-r
requirements.txt
popd
git clone git@gitlab.com:holisticfoundation/holi-unified-api.git holi-unified-api
>
/dev/null 2>&1
||
true
...
...
@@ -75,5 +78,13 @@ cat << EOF
All set up. You can now set up the projects in your IDE and start a development environment.
For starting it, execute
\`
mprocs
\`
.
For starting it, execute
\`
mprocs
\`
or
\`
mprocs -c mprocs-local-backend.json
\`
if you also want to run the locally.
EOF
This diff is collapsed.
Click to expand it.
mprocs-local-backend.json
+
6
−
4
View file @
3873bde4
...
...
@@ -19,15 +19,17 @@
"cwd"
:
"<CONFIG_DIR>/holi-unified-api/oathkeeper"
},
"unified-api"
:
{
"shell"
:
"./wait-for-port.sh 8000; cd holi-unified-api; yarn dev"
"comment"
:
"we wait for Django (port 8000), otherwise starting GraphQL mesh will fail"
,
"shell"
:
"../wait-for-port.sh 8000; yarn dev"
,
"cwd"
:
"<CONFIG_DIR>/holi-unified-api"
},
"okuna-services"
:
{
"shell"
:
"
pip3 install -r requirements-cli-only.txt;
python
3
okuna-cli.py up-services-only"
,
"shell"
:
"
source .venv/bin/activate &&
python okuna-cli.py up-services-only"
,
"cwd"
:
"<CONFIG_DIR>/holi-okuna"
},
"okuna-server"
:
{
"comment"
:
"
Before starting the server process, the services need to be up. Therefore, we wait until the services are up via a small until loop.
"
,
"shell"
:
"
until docker ps|grep okuna-worker; do sleep 1; done; source .venv/bin/activate; pip3 install -r requirements.txt;
python
3
manage.py runserver localhost:8000 || echo 'maybe you need to execute
\"
python manage.py migrate
\"
again?'"
,
"comment"
:
"
we wait for postgres (port 5432), otherwise starting Django will fail
"
,
"shell"
:
"
../wait-for-port.sh 5432; source .venv/bin/activate &&
python manage.py runserver localhost:8000 || echo 'maybe you need to execute
\"
python manage.py migrate
\"
again?'"
,
"cwd"
:
"<CONFIG_DIR>/holi-okuna"
}
}
...
...
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