Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweak set up instructions #104

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ You can find all the documentation for Gitpod here: [https://www.gitpod.io/docs/

[![Launch Joomla 4 in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#JOOMLA_SITE=joomla/https://github.com/joomlatools/joomlatools-server)

### Controlling Joomlatools Server

We've made it super simple for you to interact with the Joomlatools Server, via a bash script.

It's called the Joomlatools Control and can be accessed via:

`sh bin/jtctl`

You'll see a long list of possibilities, including your favourite Joomla! and WordPress commands.

For now lets start by getting the server up and running:

`sh bin/jtctl start`

## Architecture

Joomlatools Server runs applications as a multi-process Docker container. The processes are supervised using S6
Expand Down
2 changes: 1 addition & 1 deletion bin/jtctl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ else
display_help
fi

# Source the ".env" file so Laravel's environment variables are available...
# Source the ".env" if it is available
if [ -f ./.env ]; then
source ./.env
fi
Expand Down