django-deployment Questions
4
Solved
i'm trying to deploy my django project with gunicorn and nginx, but i need some help. when i code gunicorn myproject.wsgi:application I manage to see my website in the localhost page but without an...
Neils asked 24/11, 2013 at 13:48
13
Here are my settings :
STATIC_URL = '/static/'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
)
STATIC_ROOT = '/home/django-projects/tshirtnation/staticfiles'
Here's my nginx configur...
Eightieth asked 22/4, 2014 at 17:29
2
I am just trying to follow the step from heroku site. but on my console when i git push to heroku main? that doesn't work.
Some error showing. like below.
C:\Users\TORU\Desktop\Website Again\Python...
Dispatch asked 25/9, 2020 at 7:0
1
I deployed my Django project using Gunicorn, but now can't use Nginx caching.
How to start caching on a project that use Gunicorn and which caching method is standard for Django.
I try to use Ngnix...
Gehrke asked 29/12, 2021 at 6:15
2
Solved
I've created a Kubernetes cluster on Google Cloud and even though the application is running properly (which I've checked running requests inside the cluster) it seems that the NEG health check is ...
Breezy asked 22/9, 2021 at 2:51
2
Solved
I've been using flower locally and it seems easy enough to setup and run, but I can't see how I would set it up in a production environment.
In particular, how can I add authentication and how wou...
Lindyline asked 10/10, 2013 at 15:44
2
Is there a way to start the celery worker and beat in one command? I would like to add celery to my automated deployment procedure with Fabric.
I am currently running:
celery -A prj worker -B
...
Clarhe asked 2/3, 2017 at 21:28
4
I was making one webapp in django. I try to deployed it on pythonanywhere everything was going fine but in last when i tried to collect static files using python manage.py collectstatic it is givin...
Canasta asked 3/10, 2020 at 15:14
1
I am trying to deploy Django application on Windows 2012 server using IIS.
my web.config file :
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.we...
Arteriovenous asked 27/9, 2018 at 9:19
1
I have created a python web application in Django 2.0 using pipenv virtualenv
Now, I have to host it on apache server. I have installed libapache2-mod-wsgi-py3 and python-setuptools in the server....
Septa asked 22/5, 2018 at 9:53
2
Solved
As practice, I'm trying to deploy Andrew Godwin's multichat example with Django Channels 2.1.1 on DigitalOcean Ubuntu 16.04.4. However, I don't know how to exit the Ubuntu server without Channels' ...
Aleece asked 5/5, 2018 at 18:51
4
Solved
I changed my server settings.py from Debug = True to Debug = False.
I can get httpResponses from my other app urls but I can't access the /admin url specifically, I get the Server Error (500)
I t...
Corncob asked 17/12, 2016 at 15:58
1
Solved
So I am trying to deploy my site and basically tried
python manage.py check --deploy
and followed what ever it told me:
WARNINGS:
?: (security.W004) You have not set a value for the SECURE_HST...
Bawdy asked 14/9, 2016 at 21:48
1
I am trying to set up apache with an existing django project using the tutorial in django site here. My os is Ubuntu, and everything is installed (django apache2 libapache2-mod-wsgi)
My conf file ...
Serotherapy asked 15/5, 2014 at 13:3
1
Solved
I have a django app which has angular and bootstrap. This is how my settings are defined:
# Django settings for studentsite project.
import os
PROJECT_DIR = os.path.dirname(__file__)
DEBUG = True...
Casabonne asked 1/5, 2014 at 20:30
2
I've bought a VPS for my django app. I've never ever before deployed django, or any other application. I've read a few tutorials on how to deploy django using apache and wsgi and some other options...
Nucleonics asked 19/4, 2014 at 23:6
1
Solved
I'm trying out AWS EC2 and RDS. I had followed this tutorial and it worked, but the tutorial is missing a database migration. https://www.youtube.com/watch?v=YJoOnKiSYws So, could someone point me ...
Lani asked 24/3, 2014 at 0:59
3
Solved
First of all please let me be clear that I am a windows user and very new to the web world. For the past months I have been learning both python and django, and it has been a great experience for m...
Refrigerator asked 26/11, 2013 at 7:0
6
I have tried following guides like this one but it just didnt work for me.
So my question is this: What is a good guide for deploying Django, and how do you deploy your Django.
I keep hearing tha...
Horsewhip asked 22/9, 2008 at 10:11
1
© 2022 - 2024 — McMap. All rights reserved.