Not able to add Custom-App in frappe docker

693 Views Asked by At
1

There are 1 best solutions below

1
Johnny On

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