Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Updated Makefile, docs to install without errors #770

Merged
merged 2 commits into from
May 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ edit_etc_hosts:
# Docker Compose #
#----------------#
up:
# creates a docker network and runs docker-compose
@echo "🥫 Building and starting containers …"
docker network create po_default || true
${DOCKER_COMPOSE} up -d --build 2>&1

down:
Expand Down
6 changes: 6 additions & 0 deletions doc/how-to-guides/deployment/dev-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ make dev
This will build containers, pull images based containers, create containers and run them.
It will also download models.

Verify whether robotoff is running as expected, by executing the following command in CLI,
```bash
curl http://robotoff.openfoodfacts.localhost:5500/api/v1/status
```
The expected response is `{"status":"running"}`.

Also take a look at [maintenance](./maintenance.md)

## Local install with poetry
Expand Down