File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed
Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 215215 }
216216}
217217
218- # Build directory for bakery
219- BUILD_DIR = BASE_DIR / "build"
220- BAKERY_VIEWS = ("app.home.views.HomeView" ,)
218+ # Build directory for bakery (django-bakery expects a string path)
219+ BUILD_DIR = str (BASE_DIR / "build" )
220+ BAKERY_VIEWS = (
221+ "app.home.views.HomeView" ,
222+ "app.home.views.CodeOfConductView" ,
223+ "app.home.views.PartnershipView" ,
224+ "app.home.views.TravelInfoView" ,
225+ "app.home.views.AidScholarshipsView" ,
226+ "app.home.views.CovidPolicyView" ,
227+ "app.home.views.DataPrivacyView" ,
228+ "app.home.views.EveryoneWhoCanPaysView" ,
229+ "app.home.views.PatronAcknowledgmentView" ,
230+ "app.home.views.ScheduleView" ,
231+ "app.home.views.VolunteersView" ,
232+ "app.home.views.MerchandiseView" ,
233+ )
221234
222235# Whitenoise Configuration
223236# https://whitenoise.readthedocs.io/en/latest/
You can’t perform that action at this time.
0 commit comments