Skip to content

Instantly share code, notes, and snippets.

View iam-mhaseeb's full-sized avatar
🧑‍💻
Passionate Software Engineer

Muhammad Haseeb iam-mhaseeb

🧑‍💻
Passionate Software Engineer
View GitHub Profile
@iam-mhaseeb
iam-mhaseeb / skytrax.sql
Created April 15, 2021 10:09
Skytrax Database
This file has been truncated, but you can view the full file.
-- Database recreation
DROP DATABASE IF EXISTS skytrax;
CREATE DATABASE skytrax;
USE skytrax;
--Tables recreation
DROP TABLE IF EXISTS public.airline;
DROP TABLE IF EXISTS public.airport;
DROP TABLE IF EXISTS public.lounge;
DROP TABLE IF EXISTS public.seat;
@iam-mhaseeb
iam-mhaseeb / readme.md
Created February 27, 2021 18:59
Host wordpress site on heroku for free lifetime.
@iam-mhaseeb
iam-mhaseeb / EDX_ DJANGO_EMAIL_CONFIGURATIONS.md
Last active April 22, 2020 07:36 — forked from AsadDevAI/EDX_ DJANGO_EMAIL_CONFIGURATIONS.md
Guide to enable django email service in edX locally

To Enable Django Email Service Locally:

  • First you need valid Gmail Account
  • edX installed on your local system in docker

Steps to Follow:

  1. Go to devstack.py located at lms/env/ and cms/env.
  2. Find the EMAIL_BACKEND flag and change it to 'django.core.mail.backends.smtp.EmailBackend
  3. Add few more flags: