-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Hello, Mario!
I am struggling to make your great landing page to work. Specifically I have no idea how to send an email using the 'request invitation' form.
This is the process I used to install your repo into my local machine.
- Git clone your repo
- Installed and activated a virtualenv with Python 3.4
- Installed mysqlclient and Django 1.7.11
pip install django==1.7.11
- Created a django project
django-admin.py startproject mylandingpage .
- Changed settings to include my own database (name='django_rocket') and email server
EMAIL_HOST='localhost' EMAIL_PORT=1025
- Opened a new console to open a Python SMTPD server
python -m smtpd -n -c DebuggingServer localhost:1025)
- MIgrated database
python manage.py migrate
- Installed the django-rocket
pip install django-rocket - Registered the app adding it into INSTALLED_APPS from 'mylandingpage/settings'
- Add the url and namespace into urls.py
url(r'^', include('django_rocket.urls', namespace='django_rocket')),
- Sync database and created superuser when asked
python manage.py syncdb - Go to web admin page and root page
https://127.0.0.1:8000
Everything works great. I can subscribe using the Request Invitation form and I can delete or modify them using the Admin interface. So did the following
- Copied the entire django_rocket folder from site-packages inside the virtualenv. This folder has models.py, views.py, urls.py, and forms.py. And of course includes the templates inside the templates/django_rocket/.
And I tried again but it doesn't work. I also tried running again migrations and migrate (no changes were detected or made) but couldn't make it work.
So I don't know how to send myself emails from the Request Invitation form.
What am I doing wrong?
Metadata
Metadata
Assignees
Labels
No labels