Skip to content
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
6 changes: 4 additions & 2 deletions scripts/test-create-starter-polyglot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ sleep 30
echo "Testing Python Starter"
runCommand create starter python-starter -y -l python
cd python-starter
pip install -r requiements.txt
python main.py > ${LOGS_DIR}/python.log 2>&1 &
python3 -m venv ./venv
. ./venv/bin/activate
pip3 install -r requirements.txt
python3 main.py > ${LOGS_DIR}/python.log 2>&1 &
PID=$!
echo "Sleeping for 30..."
sleep 30
Expand Down
9 changes: 7 additions & 2 deletions templates/templates.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ templates:
npm install

To run a Coherence server with port 1408 for gRPC:

docker run -d -p 1408:1408 -p 30000:30000 ghcr.io/oracle/coherence-ce:25.03.1

To run the application:
Expand All @@ -107,10 +108,11 @@ templates:
pip install -r requirements.txt

To run a Coherence server with port 1408 for gRPC:

docker run -d -p 1408:1408 -p 30000:30000 ghcr.io/oracle/coherence-ce:25.03.1

To run the application:
python main.js
python main.py
files:
- main.py

Expand All @@ -124,9 +126,12 @@ templates:
go mod tidy

To run a Coherence server with port 1408 for gRPC:

docker run -d -p 1408:1408 -p 30000:30000 ghcr.io/oracle/coherence-ce:25.03.1

To run the application:
go run main.go
files:
- main.py
- main.go
- go.mod
- go.sum
Loading