Before learning about how to write a hypermedia API, let’s start by running the existing one. To do this best, you should start up the API and the client api.
The live demo:
test-1@semanticlink.io
with password 1234qwerZXCV
)Clone the git repo and install dependencies
git clone git://github.com/semanticlink/todo-rest-api
All dependencies are documented in this Readme and include:
Start the database in a docker container
docker run -p 8000:8000 -it --rm instructure/dynamo-local-admin`
You can view this in a browser on http://localhost:8000
ASPNETCORE_ENVIRONMENT: Development
ASPNETCORE_URLS: http://localhost:5000
Restore the package dependencies with dotnet
commandline (or through the IDE)
cd api
dotnet restore
Run the Api
project through the IDE (eg Rider)
Exec Path: Api/bin/Debug/netcoreapp2.1/Api.dll
Working Directory: ./api/Api
Environment Variables: ASPNETCORE_ENVIRONMENT=Development;ASPNETCORE_URLS=http://localhost:5000
client
commandline with yarn
(or through the IDE, eg WebStorm).Run the client
cd client
yarn install
yarn dev
It will open a browser in http://localhost:8080
Open the browser in http://locahost:5000
open http://localhost:5000
At some stage, you will need to authenticate. The credentials are at the top of the page.