Skip to content

SajjadAli54/django-mini-paypal

Repository files navigation

Mini Paypal - An Online Multi User Payment System

Tools

  • Djano
  • Django ORM
  • SQLite database
  • Django Rest API framework
  • Requests module

Design

Login Page

Sign up Page

Home Page

Send Money Page

Request Money Page

Enabling Https

Add or uncomment following lines of code into settings file to enable https

SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
SECURE_SSL_REDIRECT = True
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
SECURE_HSTS_SECONDS = 31536000  # 1 year
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
SECURE_HSTS_PRELOAD = True


# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False

Set allowed hosts as well

ALLOWED_HOSTS = [
    # allowed host
]

About

Django Mini Paypal Multi user based Website

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published