This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
Migrating from Forge 0.X to 1.0 #69
davegaeddert
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If you started a project on a pre-1.0 version of Forge, you'll notice that a handful of things have changed. Most importantly, the
forge
package itself is no longer relevant and you should instead install eachforge-{name}
package individually!These are my rough steps to migrate a project to 1.0 (you can probably copy and paste this entire thing at once):
Now you can manually merge your
app/settings.py
andapp/models.py
together.If you were using the
TemplateEmail
class, you can find it here and save it astemplatemail.py
: https://www.forgepackages.com/guides/django-template-emails/You will also probably want to copy the
HTMLTitleMixin
from here and add it to yourviews.py
.That's it! If you have any questions or run into issues, you can raise them here.
Beta Was this translation helpful? Give feedback.
All reactions