Is there a way to deploy Django with other web applications? [closed] - python

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 months ago.
Improve this question
I'm starting a new personal server in a VPS (debian). I am doing the mainpage with django. I will like to add to this server/site other external apps (such as GitLab CE, Veloren , FluxRSS and Wallabag).
The idea is to centralize everything through django. To have something like :
Blog : webpage.com
GitLab : gitlab.webpage.com
Nevertheless, I cannot seem to find any tutorials or information to do this. I think there is something related to nginx and reverse proxy, but still cant find good information.
I know the question is very broad but I'm out of resources and do not know where to search...
I've been searching through the web (including stackoverflow) and can't seem to find what I'm looking for, so even if it is just keyword recommendations or links to possible solutions/implementations I'll be extremely happy.

You are looking for virtual hosts
https://linuxiac.com/nginx-virtual-host/

Related

direct messages in flask python [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
so I'm developing python flask app where users can see other user's profile then they can click on a bottom where they can send real time direct messages using. (like twitter direct messages).
can someone lead me to w website or source to start with.
Dose even flask can do that ?
BIG Thanks in advance.
For this, you will need to use sockets. Flask-SocketIO is what you should use for this. Here's a decent guide on how to set it up, specifically for using for chat.
https://codeburst.io/building-your-first-chat-application-using-flask-in-7-minutes-f98de4adfa5d
It's for building a chat room, not private messages, but I think it's a good base and you can work out what you need to change to do private messages from here.

Django exercises [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I did enough search in google before posting here about this topic and I didn't find what I am searching for.
I just finished learning Django. Now,I would like to practise Django and become an expert in Django. I would like to practise Django by doing simple,intermediate and expert level Django exercises and assignments. Where Can I find such assignments or exercises?
Django book itself covers a lot but you will learn when you can work on some project or task. All it is a matter of practice.
Choose any best website to implement from internet that you can implement and work on it to the end with some deadlines so that you can come across different issues and learn more from those.
I would recommend you to work on a single db first and finish these tutorials before https://www.gitbook.com/book/djangogirls/django-girls-tutorial-extensions/details and https://docs.djangoproject.com/en/1.10/intro/

Other web applications in Django? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I started to learn Django, and I have downloaded some videos from youtube and downloaded some free Django books. I feel that we can only develop blogs in Django. In every video or book explaining the framework, it is about making a blog.
Please correct me if we could develop another web application like a Tracking System, HR system, finance systems or sales application.
You can definitely build things that not blogs in Django. Blogs are used as example projects because they are fairly straightforward to design and understand, but you can build pretty much anything in Django as long as its a restful web service.
Here you can find couple of example which are not BLOG examples.
http://lightbird.net/dbe2/
you can find there: calendarapp, tracking_issues app.
shop:
https://www.packtpub.com/books/content/setting-complete-django-e-commerce-store-30-minutes
here you can find few good examples:
https://codingforentrepreneurs.com/

Does there exist a Google Docs-like site for social programming? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
My lead coder and I want to hack a quick python program together tomorrow. Is there a site that will allow us, like Google Docs, to work on a program at the same time and run the code?
I have recently started using PythonAnywhere. It lets you start a console on your account, and share it with others. The site is currently in limited-beta, but I got an invite just a few hours after my request. When you share a console, the friend doesn't need an account.
I think Cloud 9 will do what you want, but it's not free unless you're open source.
For Mac users, there is a collaborative editor that should work for hacking together some Python. http://www.codingmonkeys.de/subethaedit/
Also, google turned up http://gobby.0x539.de/trac/ but I've never tried that.
Of course, each of you editing the script will still have to run it locally. ;)
There is such functionality at rextester.
Github?
It's not quite the same (not instant), but works well.

Great flask / other python micro framework code I could learn from [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I'd like to look at some good web-app code written in python, just so I can learn some of the patterns / see how I can improve my code.
I've already googled around a bit, used google code search and run a search on github too - but haven't come across a well built, comprehensive app.
Perhaps a book could work as well. Basically, I'm just trying to find a way to learn the basic programming patterns for web-applications.
Any suggestions?
Why not start with the publicly available flask.pocoo.org?
Note: I'm linking to the Github repository on which he has published the code for his website (which runs on flask) rather than the website itself.
IMHO your time would be better invested learning something like Django, because much of what you could improve in a micro framework is already builtin on a bigger framework.

Categories

Resources