I am trying out the amazing NagariaHussain/doppio app, but I can’t get it to work. Am I missing any steps? Below are the details:
Pre-requisites:
- I have a custom app named
restaurant_pos
- I created a site named
test.localhost
, installed the custom app, and set up dns multitenant - I can do development and access the site via
test.localhost:8000
- I am using docker with 3 services: mariadb, redis and frappe
- the frappe service is configured as follows:
frappe:
build: .
command: sleep infinity
environment:
- SHELL=/bin/bash
volumes:
- bench:/home/frappe/frappe-bench
- apps:/home/frappe/frappe-bench/apps:rw
- sites:/home/frappe/frappe-bench/sites:rw
ports:
- 8000-8005:8000-8005
- 9000-9005:9000-9005
- 8080:8080
extra_hosts:
- "test.localhost:127.0.0.1"
- I am using Windows 11
Steps I Followed:
bench get-app https://github.com/NagariaHussain/doppio
bench add-frappe-ui
- Verified that
frontend
folder is created inside therestaurant_pos
app with Vue project setup. - Started the server using
bench start
- In another terminal,
cd apps/restaurant_pos/frontend
and runyarn
andyarn dev
- The terminal shows that the Vite dev server is running at
http://localhost:8080/
- Tried accessing
test.localhost:8080
,test.localhost:8080/frontend
,localhost:8080
,localhost:8080/frontend
but the browser showing “This page isn’t working” indicate that page is not up.
Am I missing something here? Any help would be appreciated!