Using wwwhisper for a Django app in Heroku - django

it is possible to use wwwhisper add-on for a Django app? In that case, where can I find any guide about how to configure it? I've already installed the add-on, but I don't know how to make it work.
Thanks.

wwwhisper author here. The add-on works only with Ruby and Node.js applications on Heroku.

Related

Django and Django rest framework

I was following a resource https://blog.learncodeonline.in/how-to-integrate-razorpay-payment-gateway-with-django-rest-framework-and-reactjs
Instead of using reactjs for the front end. How can i make the frontend using Django templates? Please help. Thank you.
It will be same as any normal Django Project. Instead of exposing APIs you can use normal Django Templating for your response.
Had made a similar project which might help you to understand the concepts.
To run:
pip3 install -r requirements.txt
python3 manage.py runserver
Access the frontend template page on localhost:8000/customer/template/
Access the GET & POST APIs at localhost:8000/customer/
Link to the project: Simple CRM Project
If you need any help with it you can raise an issue at Github. Hope, it helps.

Cannot Create a new Project using Bitnami Django Stack console

I have installed bitnami django stack 1.8.7. I want to create a new project from the bitnani django console, but it does not work it does not recognize django-admin.py and the manage.py.
I followed this documentation https://bitnami.com/stack/django/djangostack.pdf
The bitnami django console does not recognize python and django commands
Can you help me please? What I m doing wrong??
Bitnami developer here.
That documentation is really old.
The link below explains how to create a new Django project using Bitnami Django stack (check Native Installer tab):
https://wiki.bitnami.com/Infrastructure_Stacks/BitNami_Django_Stack#How_to_create_a_new_Django_project.3f
I hope it helps.
P.S.: I know you have found this documentation. However, it could be useful for other users. Regards.

deploy django apps using CherryPy

I want to deploy my django application using CherryPy. But I am looking for a pluggable apps instead of a scripts (which I'll just deploy it via apache)
Any good django apps that do that?
Thanks,
James
django-cpserver

Capistrano for Django

Does anyone know of a good Django equivalent of Capistrano/Webistrano?
Fabric is a Python-based application deployment system. It can be used to deploy Django projects.
Capistrano (and therefore Webistrano) can be used for pretty much any deployment, so long as you use SSH. Capistrano is Rails-ready out-of-the-box but it can easily be configured to deploy PHP, Django, Java...whatever really.
Capistrano is a Ruby application so you'll need to have Ruby (and the required Gems) installed to run it.
Webistrano is a Rails application and you can run this locally or deploy it to a server if you wish.
I googled around for a simple formula, and then created my own at: http://www.sandelman.ca/mcr/blog/ruby-on-rails/deploying_django_applications_with_capistrano/

How do I install an open source django-application?

I want to install an existing django app, djangopeople.net. The code is at http://github.com/simonw/djangopeople.net.
I installed django and I understand how to create a new django project.
But how do you deploy an existing app? I know how this works in Rails or Symfony, but I don't really get the django concept here.
Where do I put the files? Which scripts do I run?
Thanks for the steps.
Why is this any different from deploying your own applications? Just put them somewhere in your PYTHONPATH and set up mod_wsgi or whatever to serve them.