Coder Social home page Coder Social logo

scratchdjango's Introduction

Django Scratch

A SaaS based django application built from scratch.

Run Locally

Clone the project

  git clone https://github.com/Anas12091101/ScratchDjango

Go to the project directory

  cd ScratchDjango

Add .env file

  touch .env
  // Following variables should be set in environment
    DJANGO_SECRET_KEY = "Your Django Secret Key"
    DATABASE_URL = "postgres://postgres:<password>@0.0.0.0:5432/<Your database name>"
    EMAIL_HOST_PASSWORD = "Provided by your email service provider(gmail etc)"
    EMAIL_HOST_USER = "Provided by your email service provider(gmail etc)"
    PAYPAL_CLIENT_ID = "Your Paypal client ID of your account"
    PAYPAL_CLIENT_SECRET = "Your Paypal client secret of your account"

Running with docker

  docker compose up
  docker exec -it <web container name> -bash
  python manage.py migrate

Running without docker

  pip install -r req/local.txt
  python manage.py migrate
  python manage.py runserver

API Reference

Register User

Registers the user

  POST /user/register_user/
Parameter Type Description
name string Required Your name
otp_enabled string Required None or "GA"(for google Authenticator) or "Email"(for email based OTP)
email string Required Your valid email
password string Required Password

Login

Returns JWT token on valid credentials if OTP is not enabled else the type of OTP

  POST /user/login/
Parameter Type Description
email string Required
password string Required

Check OTP

Returns JWT token on valid credentials and OTP

  POST /user/check_otp/
Parameter Type Description
email string Required
password string Required
otp string Required

Password Reset

Sends email with the reset token

  POST /user/api/password_reset/
Parameter Type Description
email string Required

Password Confirm Reset

Resets the password

  POST /user/api/password_reset/confirm/
Parameter Type Description
token string Required
password string Required

scratchdjango's People

Contributors

anas12091101 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.