Mario Munoz
Mario Munoz
Hi @sushilkjaiswar, Why would you need to have the `cpassword` field included in the model to begin with? Presuming that a user is sending you their `password` and `cpassword`, it...
First step, adding `django-simple-deploy` to my project... easy enough: 
Make sure my project is running locally with no issue:  huzzah...
The docs mention that I need the `platformshconfig` library, so I installed that as well: 
Don't forget to add `simple_deploy` to the `INSTALLED_APPS` in `settings.py`  Done...
Going to try the configuration-only deployment. First, need to create a platform app... Made sure I could log in with the platform CLI. Ran the platform command and was prompted...
So now I can run the command: ``` python manage.py simple_deploy --platform platform_sh ``` Let's see what happened.
Whoops.  Looks like I didn't activate my virtual environment.... 🤦♂️
Okay, after activating environment and running command, got this:  Hmm...
So going to commit my previous changes... These are related to adding django-simple-deploy and platformshconfig to my list of dependencies (`pyproject.toml`) and adding `simple_deploy` to my `INSTALLED_APPS`...