Skip to content

Commit cb944d7

Browse files
authored
Merge pull request #21 from Faks/dev
Dev
2 parents 75962e8 + ad316f4 commit cb944d7

File tree

13 files changed

+2349
-168
lines changed

13 files changed

+2349
-168
lines changed

.env.example

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ WORKSPACE_INSTALL_DNSUTILS=true
223223
WORKSPACE_XDEBUG_PORT=9000
224224
WORKSPACE_VITE_PORT=5173
225225
WORKSPACE_INSTALL_JDK=true
226+
WORKSPACE_INSTALL_GITHUB_CLI=false
226227

227228
### PHP_FPM ###############################################
228229

@@ -406,6 +407,7 @@ APACHE_FOR_MAC_M1=false
406407

407408
### MYSQL #################################################
408409

410+
# 5.7, 8.0, 8.4, 9.0
409411
MYSQL_VERSION=latest
410412
MYSQL_DATABASE=default
411413
MYSQL_USER=default
@@ -420,7 +422,7 @@ MYSQL_DEVELOPMENT_VERSION=latest
420422
MYSQL_DEVELOPMENT_DATABASE=default
421423
MYSQL_DEVELOPMENT_USER=default
422424
MYSQL_DEVELOPMENT_PASSWORD=secret
423-
MYSQL_DEVELOPMENT_PORT=3306
425+
MYSQL_DEVELOPMENT_PORT=3307
424426
MYSQL_DEVELOPMENT_ROOT_PASSWORD=root
425427
MYSQL_DEVELOPMENT_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d
426428

@@ -430,7 +432,7 @@ MYSQL_STAGING_VERSION=latest
430432
MYSQL_STAGING_DATABASE=default
431433
MYSQL_STAGING_USER=default
432434
MYSQL_STAGING_PASSWORD=secret
433-
MYSQL_STAGING_PORT=3306
435+
MYSQL_STAGING_PORT=3308
434436
MYSQL_STAGING_ROOT_PASSWORD=root
435437
MYSQL_STAGING_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d
436438

@@ -1092,6 +1094,8 @@ NATS_MONITORING_PORT=6222
10921094
NATS_ROUTE_PORT=8222
10931095

10941096
### SOKETI ##################################################
1097+
SOKETI_NODE_VERSION=16-debian
1098+
SOKETI_BASE_IMAGE_TAG_PREFIX=latest
10951099
SOKETI_PORT=6001
10961100
SOKETI_METRICS_SERVER_PORT=9601
10971101

DOCUMENTATION/content/documentation/index.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,41 @@ WORKSPACE_INSTALL_PHPDBG=true
382382
PHP_FPM_INSTALL_PHPDBG=true
383383
```
384384

385+
<br>
386+
<a name="Install-github-copilot-cli"></a>
387+
## Install Github Copilot Cli
388+
### Note: You must have Github Copilot access to use this feature.
389+
Install `gh-cli` in the Workspace Container:
390+
391+
<br>
392+
1 - Open the `.env`.
393+
394+
2 - Search for `WORKSPACE_INSTALL_GITHUB_CLI`.
395+
396+
3 - Set value to `true`
397+
398+
```dotenv
399+
WORKSPACE_INSTALL_GITHUB_CLI=true
400+
```
401+
4 - Re-build the containers `docker compose build workspace`
402+
403+
5 - start your container `docker compose up -d workspace // ..and all your other containers`
404+
405+
6 - Enter the Workspace container:
406+
```bash
407+
docker-compose exec workspace bash
408+
```
409+
410+
7 - Authenticate with your github account and follow the instructions::
411+
```bash
412+
gh auth login
413+
```
414+
415+
8 - Install the copilot cli:
416+
```bash
417+
gh extension install github/gh-copilot
418+
```
419+
385420

386421

387422

0 commit comments

Comments
 (0)