diff --git a/.gitignore b/.gitignore index 103e7d0..337a789 100644 --- a/.gitignore +++ b/.gitignore @@ -8,8 +8,8 @@ *.pyc __pycache__/ local_settings.py -db.sqlite3 -db.sqlite3-journal +# db.sqlite3 +# db.sqlite3-journal media # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/ diff --git a/api/Procfile b/api/Procfile index 18ad15a..5363888 100644 --- a/api/Procfile +++ b/api/Procfile @@ -1 +1,2 @@ web: python manage.py runserver 0.0.0.0:$PORT +release: python manage.py migrate diff --git a/api/accounts/models.py b/api/accounts/models.py index 9481c50..de3dac2 100644 --- a/api/accounts/models.py +++ b/api/accounts/models.py @@ -14,8 +14,6 @@ class User(AbstractUser): REQUIRED_FIELDS = ["email"] USERNAME_FIELD = "username" - # objects = UserManager() - class Meta: verbose_name = "User" verbose_name_plural = "Users" diff --git a/api/db.sqlite3 b/api/db.sqlite3 new file mode 100644 index 0000000..dcdcb37 Binary files /dev/null and b/api/db.sqlite3 differ