Skip to content

Commit 55af63c

Browse files
committed
Doc tweaks
1 parent bbeb429 commit 55af63c

File tree

8 files changed

+42
-105
lines changed

8 files changed

+42
-105
lines changed

.idea/php.xml

Lines changed: 0 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/project-manager.iml

Lines changed: 0 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/changing-config.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ of forcing the one provided via arguments.
6060
these will be started or stopped together. Use the config options to add or remove these. The
6161
dependencies are defined as an array in the `project.yaml` on a per service basis.
6262

63-
* [Getting Started](./getting-started.md)
64-
* [Project Configuration](./project-configuration.md)
65-
* [Managing Services](./services.md)
66-
* [Templates](./templates.md)
67-
* [Changing Config Options](./changing-config.md)
68-
* [Setting up a dev env](./init-dev-env.md)
63+
* [Getting Started](getting-started.md)
64+
* [Project Configuration](project-configuration.md)
65+
* [Managing Services](services.md)
66+
* [Templates](templates.md)
67+
* [Changing Config Options](changing-config.md)
68+
* [Setting up a dev env](init-dev-env.md)

docs/getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ for container names are:
8585
The import does not try to determine dependencies and will use the folder name as the project
8686
and dirname values.
8787

88-
* [Getting Started](./getting-started.md)
89-
* [Project Configuration](./project-configuration.md)
90-
* [Managing Services](./services.md)
91-
* [Templates](./templates.md)
92-
* [Changing Config Options](./changing-config.md)
93-
* [Setting up a dev env](./init-dev-env.md)
88+
* [Getting Started](getting-started.md)
89+
* [Project Configuration](project-configuration.md)
90+
* [Managing Services](services.md)
91+
* [Templates](templates.md)
92+
* [Changing Config Options](changing-config.md)
93+
* [Setting up a dev env](init-dev-env.md)

docs/init-dev-env.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ If debugging is used `-vvv` then each command and it's output will be streamed t
4646
When developing a setup script, be sure to do it in a virtual machine to avoid damaging your
4747
own setup.
4848

49-
* [Getting Started](./getting-started.md)
50-
* [Project Configuration](./project-configuration.md)
51-
* [Managing Services](./services.md)
52-
* [Templates](./templates.md)
53-
* [Changing Config Options](./changing-config.md)
54-
* [Setting up a dev env](./init-dev-env.md)
49+
* [Getting Started](getting-started.md)
50+
* [Project Configuration](project-configuration.md)
51+
* [Managing Services](services.md)
52+
* [Templates](templates.md)
53+
* [Changing Config Options](changing-config.md)
54+
* [Setting up a dev env](init-dev-env.md)

docs/project-configuration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ per-project basis in the templates section.
149149

150150
See [templates](./templates.md) for more information.
151151

152-
* [Getting Started](./getting-started.md)
153-
* [Project Configuration](./project-configuration.md)
154-
* [Managing Services](./services.md)
155-
* [Templates](./templates.md)
156-
* [Changing Config Options](./changing-config.md)
157-
* [Setting up a dev env](./init-dev-env.md)
152+
* [Getting Started](getting-started.md)
153+
* [Project Configuration](project-configuration.md)
154+
* [Managing Services](services.md)
155+
* [Templates](templates.md)
156+
* [Changing Config Options](changing-config.md)
157+
* [Setting up a dev env](init-dev-env.md)

docs/services.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ __Note:__ the network name and project name are automatically resolved using the
193193
configuration from the project file. If a mis-match is detected, you will be notified of the
194194
issue.
195195

196-
* [Getting Started](./getting-started.md)
197-
* [Project Configuration](./project-configuration.md)
198-
* [Managing Services](./services.md)
199-
* [Templates](./templates.md)
200-
* [Changing Config Options](./changing-config.md)
201-
* [Setting up a dev env](./init-dev-env.md)
196+
* [Getting Started](getting-started.md)
197+
* [Project Configuration](project-configuration.md)
198+
* [Managing Services](services.md)
199+
* [Templates](templates.md)
200+
* [Changing Config Options](changing-config.md)
201+
* [Setting up a dev env](init-dev-env.md)

readme.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ and continue on. There is no special configuration needed in any project.
1010

1111
## Features
1212

13-
* groups separate micro services projects together
14-
* gives a docker overview of running processes
13+
* groups separate micro-service projects together
14+
* gives an overview of running docker processes across all services
1515
* supports dependencies between services
16-
* supports making new services and libraries (configurable source repositories)
1716
* supports multiple projects on a single machine
17+
* supports templates for libraries and services
18+
* supports docker container definitions for easier adding to services
1819
* all configuration is by yaml files
1920

2021
## Installation
2122

23+
Project Manager requires PHP 7.3+ to be installed and in your shell path.
24+
2225
Grab the phar archive and copy it to `/usr/local/bin` or add it to your path.
2326
Symlink the phar to `spm` or a.n.other name. Be sure to verify the SHA checksum with
2427
the ones in the release checksums text file.
@@ -29,15 +32,15 @@ Or:
2932

3033
Run: `spm init` to create the standard configuration (see later).
3134

32-
See [getting started](./docs/getting-started.md) for the next steps.
35+
See [getting started](docs/getting-started.md) for the next steps.
3336

3437
More:
3538

36-
* [Project Configuration](./docs/project-configuration.md)
37-
* [Managing Services](./docs/services.md)
38-
* [Templates](./docs/templates.md)
39-
* [Changing Config Options](./docs/changing-config.md)
40-
* [Setting up a dev env](./docs/init-dev-env.md)
39+
* [Project Configuration](docs/project-configuration.md)
40+
* [Managing Services](docs/services.md)
41+
* [Templates](docs/templates.md)
42+
* [Changing Config Options](docs/changing-config.md)
43+
* [Setting up a dev env](docs/init-dev-env.md)
4144

4245
### Removing Project Manager
4346

0 commit comments

Comments
 (0)