Reorganize README and add Docker instructions
The README file was reorganized to make it more readable by grouping related badges together. Additionally, instructions on how to start the Elsa Docker container were appended for users who want to quickly try out the Elsa Studio and Elsa Server.
This commit is contained in:
parent
e8e1ec7092
commit
eeba1f8e9b
26
README.md
26
README.md
|
|
@ -2,21 +2,17 @@
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Packages
|
|
||||||
[](https://www.nuget.org/packages/Elsa/)
|
|
||||||
[](https://www.npmjs.com/package/@elsa-workflows/elsa-workflows-studio)
|
|
||||||
|
|
||||||
### Continuous Delivery
|
|
||||||
[](https://github.com/elsa-workflows/elsa-core/actions/workflows/packages.yml)
|
[](https://github.com/elsa-workflows/elsa-core/actions/workflows/packages.yml)
|
||||||
|
[](https://www.nuget.org/packages/Elsa/)
|
||||||
[](https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json)
|
[](https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json)
|
||||||
|
[](https://www.npmjs.com/package/@elsa-workflows/elsa-workflows-studio)
|
||||||
|
[](https://f.feedz.io/elsa-workflows/elsa-3/packages/%40elsa-workflows%2Felsa-studio-wasm/latest/download)
|
||||||
[](https://hub.docker.com/repository/docker/elsaworkflows/elsa-v3)
|
[](https://hub.docker.com/repository/docker/elsaworkflows/elsa-v3)
|
||||||
|
[](https://discord.gg/hhChk5H472)
|
||||||
### Discussion
|
|
||||||
[](https://discord.gg/hhChk5H472)
|
|
||||||
[]( http://stackoverflow.com/questions/tagged/elsa-workflows )
|
[]( http://stackoverflow.com/questions/tagged/elsa-workflows )
|
||||||
[](https://www.reddit.com/r/elsaworkflows/)
|
[](https://www.reddit.com/r/elsaworkflows/)
|
||||||
|
|
||||||
|
## Introduction
|
||||||
Elsa is a powerful workflow library that enables workflow execution within any .NET application. Elsa allows you to define workflows in various ways, including:
|
Elsa is a powerful workflow library that enables workflow execution within any .NET application. Elsa allows you to define workflows in various ways, including:
|
||||||
|
|
||||||
- Writing C# code
|
- Writing C# code
|
||||||
|
|
@ -25,6 +21,18 @@ Elsa is a powerful workflow library that enables workflow execution within any .
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
### Try with Docker
|
||||||
|
|
||||||
|
To give the Elsa Studio + Elsa Server a quick spin, you can run the following command to start the Elsa Docker container:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker pull elsaworkflows/elsa-v3:latest
|
||||||
|
docker run -t -i -e ASPNETCORE_ENVIRONMENT='Development' -e HTTP_PORTS=8080 -p 13000:8080 elsaworkflows/elsa-v3:latest
|
||||||
|
```
|
||||||
|
> This image is a reference ASP.NET application that hosts both the workflow server and designer
|
||||||
|
>
|
||||||
|
> It is not intended for production use.
|
||||||
|
|
||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
- [Documentation](#documentation)
|
- [Documentation](#documentation)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue