deislabs / hippo-docs

Website for Hippo
https://docs.hippofactory.dev/
Other
2 stars 8 forks source link

Update docs for running locally #62

Closed ecumene closed 2 years ago

ecumene commented 2 years ago

https://docs.hippofactory.dev/intro/running-locally/

$ git clone https://github.com/deislabs/hippo
$ cd hippo/src/Hippo
$ dotnet restore
$ npm run build
$ export BINDLE_URL=http://localhost:8080/v1
$ dotnet run

It should be

$ git clone https://github.com/deislabs/hippo
$ cd hippo/
$ dotnet restore
$ export BINDLE_URL=http://localhost:8080/v1
$ dotnet run --project=src/Web/Web.csproj

Or... at least that's what I got to work... I don't really know what I'm doing. I just read the .sln file and guessed

bacongobbler commented 2 years ago

Thanks. Are you suggesting we change the documentation? Both appear to accomplish the same task.

I find it easier to pass dotnet run rather than remembering what flags I have to pass to run the server, which is why I suggest switching to the Web directory.

bacongobbler commented 2 years ago

In any case, we will need to update the docs. Looks like it’s a little out of date after a few recent code refactors.