This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from django.contrib.staticfiles.storage import staticfiles_storage | |
| from django.views.generic.base import RedirectView | |
| from django.contrib import admin | |
| from django.urls import path, include | |
| from leads.views import landing_page | |
| def trigger_error(request): | |
| division_by_zero = 1 / 0 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | """ | |
| Django settings for djcrm project. | |
| Generated by 'django-admin startproject' using Django 3.1.4. | |
| For more information on this file, see | |
| https://docs.djangoproject.com/en/3.1/topics/settings/ | |
| For the full list of settings and their values, see | |
| https://docs.djangoproject.com/en/3.1/ref/settings/ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | MIDDLEWARE = [ | |
| 'django.middleware.security.SecurityMiddleware', | |
| 'whitenoise.middleware.WhiteNoiseMiddleware', | |
| 'django.contrib.sessions.middleware.SessionMiddleware', | |
| 'django.middleware.common.CommonMiddleware', | |
| 'django.middleware.csrf.CsrfViewMiddleware', | |
| 'django.contrib.auth.middleware.AuthenticationMiddleware', | |
| 'django.contrib.messages.middleware.MessageMiddleware', | |
| 'django.middleware.clickjacking.XFrameOptionsMiddleware', | |
| ] | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "editor.fontSize": 18, | |
| "terminal.integrated.fontSize": 18, | |
| "editor.wordWrap": "on", | |
| "editor.tabSize": 2, | |
| "workbench.iconTheme": "vscode-icons", | |
| "editor.formatOnSave": true, | |
| "[javascript]": { | |
| "editor.formatOnSave": true | |
| }, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const express = require('express'); | |
| const app = express(); | |
| // HTTP Methods CRUD => Create,Read, Update and Delete | |
| app.get('/', (req, res) => { | |
| res.send('Hi, There Manot Luijiu'); | |
| }); // Read | |
| // app.post(params); // Create | |
| // app.put(params); // Update | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import React, { Component } from 'react'; | |
| import './App.css'; | |
| import { | |
| Container, | |
| Button, | |
| ButtonToolbar, | |
| Row, | |
| Col, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <> | |
| <div className="App"> | |
| <Container> | |
| <Header /> | |
| </Container> | |
| </div> | |
| <Jumbotron> | |
| <Container> | |
| <Row className="justify-content-center"> | |
| <Col md={6}> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | function test() { | |
| console.log('test'); | |
| }; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              Show hidden characters
| { | |
| "extends": ["airbnb", "prettier"], | |
| "plugins": ["prettier"], | |
| "rules": { | |
| "prettier/prettier": ["error"], | |
| "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | |
| "react/destructuring-assignment": ["always", { "ignoreClassFields": true }] | |
| }, | |
| "parser": "babel-eslint" | |
| } |