52 questions
0
votes
0
answers
19
views
Django devserver load once
I am trying to develop a django application it use paddelocr take sometime to initiate.
so when ever I am trying to change something and test it I have to wait 5 sec for the paddleocr to initiate ...
0
votes
1
answer
63
views
In Django, is it possible to see which method is generating a SQL query?
When creating a custom User (inherits from AbstractUser) we have a signal which creates a randomized password (from Django's get_random_string) and send it out in an email in a celery task to the user....
0
votes
1
answer
256
views
How to run django app on windows server ec2 instance with mysql database and costum domain
I have Copied my files to the server and also setup the domain in the route 53 and also installed the xampp server now
When i try starting the server with the command Python manage.py runserver 0.0.0....
-2
votes
1
answer
173
views
Django server won't load
strong text
I am trying to run my django server using the python manage.py runservercommand. Keep getting this error in my shell. The development server is refusing to load. The image is the error ...
0
votes
0
answers
140
views
Django Dev Server - sleep(N) in Middleware makes requests sleep multiple N seconds
Working on a middleware that slows down dev server response time.
To simplify it I've created a very simple example that measures get_response time and then sleeps so the whole request cycle takes ...
0
votes
1
answer
213
views
Django Heroku how to go back to development server to make more changes
So I just deployed my Django app to Heroku, and everything is working fine. The current version of the app isn't perfect, so I want to edit it, but my current process is:
1. **make changes in files
2. ...
0
votes
1
answer
742
views
Django Serve Static Files with out seperate Web server(i.e, without nginx??)
I have a issue with running my django application on the production server, Its working fine when i use nginx webserver to serve the static files.
But i have my django application running on one ...
0
votes
1
answer
2k
views
Django dev server extremely slow
We have an app that works perfectly fine on production but very slow on the dev machine.
Django==2.2.4
I'm using Ubuntu 20.04 but other devs are using macOS and even Windows.
Our production server is ...
0
votes
0
answers
952
views
ModuleNotFoundError: No module named 'django.contrib.admin' in pythonanywhere
hi i know this is repetitive question but i checked everywhere and i checkd my urls and import stuffs but it does not fix i don't know which file path is incorrect
i clone my project from github and ...
0
votes
1
answer
184
views
Error importing devserver module devserver.modules.sql: "cannot import name util"
Just upgraded from django 1.8 to 1.9 and getting this error while migrating:
Error importing devserver module devserver.modules.sql: "cannot import name util"
Although they say it is fixed it here:
...
2
votes
1
answer
5k
views
Django https with a dev server
I'm trying to use SpeechRecognition/ webkitSpeechRecognition in my website, and thus need to run a dev server in django using https.
I've taken the following steps:
install and configure ...
1
vote
2
answers
354
views
Django development server shutdown on error
I am running a dev server on localhost to test a django app. About a week ago the dev server started exiting on error- which is not ideal.
To give you an instance, imagine I want to create a new ...
1
vote
1
answer
867
views
Django Development server displaying wrong project data
I am able to access the django development server 127.0.0.1:8000 even without running "python manage.py runserver". It is displaying the previously created project website. Even when I run manage.py ...
0
votes
0
answers
121
views
How to query data using the build in Django functions in postgresql database?
I am wanting to query data using the build in Django functions on postgresql database. When the highlighted line of code runs, I get the following error: django.db.utils.ProgrammingError: can't adapt ...
0
votes
2
answers
1k
views
Django dev server STILL won't serve static files
Okay, all. I know this is a question that many people have solved in various cases, but I cannot for the life of me get my Django 1.9 development server to serve static content on my local computer. ...
2
votes
0
answers
112
views
How to slow down the django debug server
What is a best way to slow down the django runserver in debug mode?
I want to emulate the weak server.
0
votes
0
answers
32
views
Is there a best practice way to direct output of the development server to stdout for a front-end dev server?
Let's say I have a a hybrid application (the django templater is required to serve the page with the form widgets, data, etc, however there is still a decent amount of js/ejs/lodash/etc wizardry going ...
2
votes
1
answer
89
views
Django test server and development server intermittently having trouble retrieving external resources
I am working on a Django app on Ubuntu 16.04, and recently noticed that functional tests using selenium in the test suite for my Django app will sometimes fail (timeout). These are tests that ...
1
vote
0
answers
154
views
Cookieless domains for static in Django + Nginx
I've found a tip of using cookieless domains for serving static files. My experiments have shown seriuos drop in request time (django-debug-toolbar) that is pretty much what I wanted to get.
The ...
0
votes
1
answer
87
views
Why is Django development server bringing my app under another app's address?
After going through Django Project's tutorial on creating a polling app, named polls, I started my own project on the same virtual environment, under another name. Now, what I did in my new app under ...
0
votes
1
answer
320
views
Quit Django dev server but process doesn't stop
I'm developing on Mac OSX 10.8. Lately I've been noticing that when I've been running the dev server for a while, and then -C to exit, the process continues to run in the background. I have to do a ps ...
1
vote
3
answers
4k
views
Why can't I import modules in a Django project?
I am trying to pick up an old Django project and my immediate goal is to see what I can get running on my computer on the development server. I get:
Inner Sanctum ~/pragmatometer $ python manage.py ...
1
vote
1
answer
121
views
Can a development server buffer HTTP requests while reloading?
We all love that Django's development server (manage.py runserver) notices file changes and reloads. But I find that I often beat the dev server to the punch - I hit reload in my browser while the ...
4
votes
1
answer
7k
views
django python manage.py runserver RuntimeError: Settings already configured
I am quite new to Django and Python. My environ is Win7 and Python3.4. Now following the tutorial in Django Official Website to build a web app. At first, everything works quite well and output are ...
4
votes
3
answers
574
views
Serve different Static files on devel and production in Django
I have a production and local DJANGO development environment. To push things to production we have a deployer which minifies and gzips all CSS and JS files.
To serve them on production I need to ...
3
votes
0
answers
2k
views
Django dev server serving css files with wrong mimetype
My browser (firefox) console confirms receiving files with status 200 but firefox gives me this:
The stylesheet http://localhost:8000/css/full-width-pics.css was not loaded because its MIME type, "...
1
vote
1
answer
1k
views
Django development server. CSS files being served as 'text/html'
I'm using Django 1.8. I get status 200 for both of my css files but the firefox says:
The stylesheet http://localhost:8000/css/full-width-pics.css was not loaded because its MIME type, "text/html", ...
0
votes
0
answers
41
views
Achieving PHP-like workflow with Django dev server? (without reloading)
The development of my django applications involves something very annoying: whenever I perform any change in my codebase, I need to restart the application. Django does it for me, cool, but it takes ...
1
vote
1
answer
807
views
How to restart a Django development web server in virtual machine on file modification?
I have a VirtualBox machine managed by Vagrant. On this machine I run a Django development web server:
./manage.py runserver 0.0.0.0:8080
The codebase is big so for faster code reload I installed ...
1
vote
0
answers
109
views
Getting Error NoReverseMatch error in Django. (It works at local but doesn't work at server)
I have project and i must to deploy my project to server. In local, my project can work properly. But, when i try to run in server. Why appears this error
Environment:
Request Method: GET
Request ...
5
votes
4
answers
6k
views
Very slow first request in Django Development server
Whenever I run python manage.py runserver and accesses my website with localhost:8000 in the browser, the first request is VERY slow (around 10 seconds).
Following requests are really fast.
Is there ...
0
votes
1
answer
675
views
port forwarding django development server - URL is being doubled
I have a Django development server running on a remote centos VM on another lan. I have set up port forwarding using Secure CRT to access the web page through my browser from my desk pc. I am ...
3
votes
2
answers
5k
views
Django serving each app separately in each its port
I've got a very simple project running on Django (no models yet) and I need to do the following:
I have created 2 apps, 'Ebony' and 'Ivory' that need to communicate with each other through JSON ...
1
vote
0
answers
177
views
Django development server not returning JSON responses
Or rather, it's returning them as text, which is really odd. So I have this line of code in my javascript to test this that's
$.get('/static/js/categories.json', function(response){ console.log(...
0
votes
1
answer
140
views
Django - separating shared & dedicated static files on dev machine
I've gone through https://docs.djangoproject.com/en/dev/howto/static-files/ & related Q&A on stackoverflow regarding placement of static files on Django.
Each project app has its own dedicated ...
0
votes
1
answer
988
views
Can't get Django to server its dev server on my LAN
I really try not to ask questions on here, but I've been googling for a bit now and can't find the answer or another method to try. I have a CentOS box at my house hooked to a router. I've assigned it ...
1
vote
1
answer
253
views
how to set django development server
I am stuck on this step:
i have a page, which i am developing in django. the page is ready to test. i deployed it. running well and it is online. but now i want to setup a new project in server as ...
13
votes
3
answers
14k
views
Django development server and MIME types
Is there anyway of setting MIME types in the django development server?
Specifically, I would love to remove this message from the warnings in Chrome dev tools.
Resource interpreted as Image but ...
1
vote
1
answer
857
views
Turning off model validation on Django dev-server
Stage of models validation is most longest in Django dev-server startup. And in my case it mostly waste of time, since my models сhanging infrequently.
Is there way to turn off this?
23
votes
1
answer
3k
views
What's the meaning of the default output of manage.py runserver?
What's the meaning of the default output of manage.py runserver?
Can't find any documentation on it:
[25/Jan/2013 07:45:59] "GET / HTTP/1.1" 200 149
4
votes
3
answers
640
views
Testing Django project, how can I avoid Errno 10054?
I'm testing a simple django project using its own development server. However every time I close my IE client an error appears in the console. It doesn't cause any failure though. When I open another ...
9
votes
2
answers
3k
views
Django - use pdb interactive debug for wsgi running app
If I develop a Django app and use the included testing server, I can just add a import pdb; pdb.set_trace() anywhere in the code and have a breaking point that throws me into an interactive debugger. ...
0
votes
0
answers
169
views
GeoDjango: Geographic query causes segmentation fault
On Django development server with SpatiaLite, I am trying to do a basic geographic query:
Location.objects.filter(geom__within=loc.geom)
This causes a Segmentation error and the server dies. loc is ...
2
votes
1
answer
2k
views
The logs of POST/GET requests from Django application on Apache
Django development server is really nice, it shows the log of all POST/GET requests as well as other events in real time. Example of logs from Django dev server:
[04/Jul/2012 19:23:27] "GET /static/...
1
vote
1
answer
3k
views
Django - distinguish development server (manage.py runserver) from the regular one (eg. Apache)
I need a way to distinguish development server in Django (run eg. by ./manage.py runserver 0.0.0.0:8000) from the one being run on Apache. In case of Apache I use WSGI daemon mode, but I would like to ...
2
votes
1
answer
2k
views
Change colors of output log text from Django development server
When running the django test server on a local project, can you make 400/500 errors stand out in a different color in output text?
1
vote
1
answer
423
views
Serving static files in development with django-devserver
I finally got around to trying out django-devserver. It's installed and working but static files refuse to load (Django 1.3). (Note: static files work fine with the standard runserver management ...
14
votes
3
answers
874
views
Django dev server intermittently fails to serve static files
In my development environment I'm getting intermittent failures for serving static files (js scripts and css). In the error console in Chrome I get 404s. But if I refresh on those items, or visit the ...
1
vote
2
answers
192
views
Getting error with Django while requesting any url
I am running django on django's development server. It was working fine before but from yesterday i keep getting this error on the linux command line where server was running.
Exception happened ...
3
votes
1
answer
229
views
Django IDE : how to start the devserver in an editor?
I`m trying to develop a simple plugin for the Editra editor for django development. Right now it can create django projects and apps from within the editor. The editor is based on wxPython and I want ...