Skip to content

Commit

Permalink
chore(dev): Issue 28480 happy path cheat sheet build deploy project (#…
Browse files Browse the repository at this point in the history
…28671)

### Proposed Changes
* Add a new `just` command to startup the application on a specific
port.

### Fixes
#28480

---------

Co-authored-by: Daniel Colina <[email protected]>
  • Loading branch information
2 people authored and spbolton committed Jun 3, 2024
1 parent 1684a17 commit 2b46c59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions .github/data/slack-mappings.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,6 @@
"github_user": "josemejias11",
"slack_id": "U03RU9U23RQ"
},
{
"github_user": "dcolina",
"slack_id": "U04SKNT3W7L"
},
{
"github_user": "melissarojas-dotcms",
"slack_id": "U047MRAKREJ"
Expand Down
6 changes: 5 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,14 @@ dev-run-map-dev-paths:
dev-run-debug-suspend:
./mvnw -pl :dotcms-core -Pdocker-start,debug-suspend

# Starts the dotCMS Docker container in the background
# Starts the dotCMS Docker container in the background, running on random port
dev-start:
./mvnw -pl :dotcms-core -Pdocker-start

# Starts the dotCMS Docker container in the background
dev-start-on-port port="8082":
./mvnw -pl :dotcms-core -Pdocker-start -Dtomcat.port={{ port }}

# Stops the development Docker container
dev-stop:
./mvnw -pl :dotcms-core -Pdocker-stop
Expand Down

0 comments on commit 2b46c59

Please sign in to comment.