Skip to content

Commit

Permalink
Merge pull request #20 from saint-hilaire/rc/1.1
Browse files Browse the repository at this point in the history
Rc/1.1
  • Loading branch information
saint-hilaire committed May 31, 2024
2 parents b72bbf8 + a6b8c5b commit 7f35247
Show file tree
Hide file tree
Showing 19 changed files with 409 additions and 149 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@ lampsible someuser@somehost.com wordpress \
--email-for-ssl you@yourdomain.com
```

Install a production ready Joomla site:

```
lampsible someuser@somehost.com joomla \
--ssl-certbot \
--email-for-ssl you@yourdomain.com
```

Install a Laravel app on a test server:

```
Expand All @@ -51,7 +59,7 @@ lampsible someuser@somehost.com laravel \
--laravel-artisan-commands key:generate,migrate
```

Set up a LAMP with various custom configuration and a self signed SSL certificate on some local VM:
Set up a LAMP stack with various custom configuration and a self signed SSL certificate on some local VM:

```
lampsible someuser@192.168.123.123 lamp-stack \
Expand All @@ -70,4 +78,4 @@ Run `lampsible --help` for a full list of options.

## Contributing

PLease do! I'd be more than happy to see Issues, Pull Requests and any other kind of feedback ;-)
Please do! I'd be more than happy to see Issues, Pull Requests and any other kind of feedback ;-)
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "lampsible"
version = "1.0.0"
version = "1.1.0"
authors = [
{name="Brian St. Hilaire", email="brian.st-hilaire@sanctus-tech.com"}
]
Expand All @@ -17,11 +17,11 @@ requires-python = ">=3.8"
dependencies = [
"ansible-core",
"ansible-runner",
"requests",
"requests>=2.32.3",
"fqdn",
]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Ansible",
"Programming Language :: Python :: 3",
Expand Down
2 changes: 1 addition & 1 deletion src/lampsible/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '1.1.0'
Loading

0 comments on commit 7f35247

Please sign in to comment.