Skip to content

chandusanjith/banking-project-using-django-and-python

Repository files navigation

Developing Django on Repl.it

Run on Repl.it

  • Fork this template to get started
  • Simply hit run to start the server
  • The server will autoreload as needed. You don't need to restart the server manually.

Add your first view

  1. Create a file under mysite named views.py with the following contents:
from django.http import HttpResponse


def index(request):
    return HttpResponse("Hello, world.")
  1. Add a url pattern under mysite/urls.py. It should look like this:
from django.contrib import admin
from django.urls import path
from . import views

urlpatterns = [
    path('admin/', admin.site.urls),
    path('', views.index, name='index'),
]

Shell

Django utilizes the shell for managing your site. For this click on the ? in the lower-right corner and click "Workspace shortcuts" from there you can open a new shell pane.

Database

By default this template utilizes the sqlite database engine. While this is fine for development it won't work with external users of your app as we don't persist changes to files when they happen outside the development environment.

We suggest bringing a database using an outside service.

See Django documentation on how to setup a database: https://docs.djangoproject.com/en/3.0/intro/tutorial02/

<iframe height="400px" width="100%" src="https://repl.it/@chandusanjith/banking-project-using-django-and-python?lite=true" scrolling="no" frameborder="no" allowtransparency="true" allowfullscreen="true" sandbox="allow-forms allow-pointer-lock allow-popups allow-same-origin allow-scripts allow-modals"></iframe>