Following this URL https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md
But unable to add Custom App as cannot add custom app through APPS_JSON
I tried this URL https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md
Following this URL https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md
But unable to add Custom App as cannot add custom app through APPS_JSON
I tried this URL https://github.com/frappe/frappe_docker/blob/main/docs/custom-apps.md
Correct me if I'm wrong, but can't you still connect to this bench console on the dockerized version? If so, this is how it could possibly be done.
Start the server, or make sure the server is running
bench start
Using another instance of the terminal, navigate to the bench directory
Make sure your bench instance is in developer mode
bench set-config -g developer_mode 1
Clear default site cache
bench --site yoursite.local clear-cache
Create new Frappe App (in this case you've already done this)
bench new-app app_name_here
Installing Frappe App
bench --site yoursite.local install-app app_name_here
The migrate command updates the site's state to the current available apps.
bench migrate