Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 853 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 853 Bytes

Site weather app

Weather app

My final project - Weather app

Features

  • sending emails (user verification)
  • add information about weather
  • search information about weather on the city
  • API

Installation

Linux:

virtualenv -p python3 .venv
source .venv/bin/activate
pip install requirements.txt

Run

python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Testing Emails

To output an account verification message to a console use this in your settings.py file:

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

To send order confirmations use:

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'

Built With

  • Django
  • PostgreSQL