From 530b8465acdb219c7735076b49e7e1d7aedc3038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Pouly?= Date: Sun, 4 Feb 2024 22:35:12 +0100 Subject: [PATCH] Add README --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..16d0bc0 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# Expressio + +Generate mixed expressions, remake of [ExpGen](https://github.com/Gulantib/ExpGen) + +## Run the App + +```dotnetcli +cd src/Expressio +dotnet run +``` + +Default route for the app is [http://localhost:5289/](http://localhost:5289/). +In development environment, a swagger for the API is also accessible through [http://localhost:5289/swagger/index.html](http://localhost:5289/swagger/index.html). + +## Run the test suite + +```dotnetcli +cd src +dotnet test +```