Skip to content

frpouly/Expressio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Expressio

Generate mixed expressions, remake of ExpGen

Run the App

Using Dotnet CLI

cd src/Expressio
dotnet run

Default route for the app is http://localhost:5289/.

In development environment, a swagger for the API is also accessible through http://localhost:5289/swagger/index.html.

Using Docker

docker build -t expressio -f Dockerfile ./src/Expressio
docker run -d -p 5289:8080 expressio 

Default route for the app is http://localhost:5289/.

Run the test suite

cd src
dotnet test