Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 729 Bytes

README.md

File metadata and controls

41 lines (33 loc) · 729 Bytes

Interview API Excercise

There are three versions of the exercise: Golang, Python, and C#. You may use any of these.

To spin up the server, you can either run it locally or within docker.

Golang Application

Run the go-app within docker

docker-compose build
docker-compose up

Run the go-app locally

go run server.go

Python (Flask) Application

Run the python-app within docker

docker-compose build
docker-compose up

Run the go-app locally

flask run --debug

C# (ASP.NET) Application

Run the csharp-app within docker

docker-compose build
docker-compose up

Run the csharp-app locally

dotnet run --project Search