Basic “Hello, World!” application using Django and Ruby on Rails.
Django Example: pip install django django-admin startproject hello_django cd hello_django python manage.py startapp hello_app from django.http import HttpResponse def hello(request): return HttpResponse(“Hello, Django!”) from django.urls import path from hello_app import views urlpatterns = [ path(”, views.hello, name=’hello’), ] python manage.py runserver Ruby on Rails Example: gem install rails rails new hello_rails cd hello_rails rails generate … Continue reading Basic “Hello, World!” application using Django and Ruby on Rails.
Copy and paste this URL into your WordPress site to embed
Copy and paste this code into your site to embed