Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread Mordecai Etukudo
First install white noise and collect static you are good to go On Thu, Feb 29, 2024, 7:38 PM ASAMOAH EMMANUEL wrote: > I faced this issue before and I know how frustrating it can be. after > sifting through several results, this worked. sudo usermod -aG username > www-data > sudo chown -R

Re: Python Database Migration Tool

2024-02-29 Thread Eduardo Barbachan
I believe that you will have to translate your postgres db to a mssql schema, perform the mapping by yourself, and elaborate a series of procedures to get this done. As far as I know, no tool will cover all of your needs. Em qui., 29 de fev. de 2024 às 12:01, sebasti...@gmail.com <

Re: Data model design questio: graph in database

2024-02-29 Thread Sébastien Hinderer
Dear Ryan, 'Ryan Nowakowski' via Django users (2024/02/26 17:39 -0600): > You might consider using GenericRelation. That would allow you to query the > edges that have a certain vertex type. > > https://docs.djangoproject.com/en/5.0/ref/contrib/contenttypes/#generic-relations That looks indeed

Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread ASAMOAH EMMANUEL
I faced this issue before and I know how frustrating it can be. after sifting through several results, this worked. sudo usermod -aG username www-data sudo chown -R :www-data /home/username/projects/personal On Thu, Feb 29, 2024 at 6:37 PM ASAMOAH EMMANUEL < emmanuelasamoah...@gmail.com> wrote:

Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread ASAMOAH EMMANUEL
Replace your username with this and run this code: sudo usermod -aG username www-data sudo chown -R :www-data /home/username/projects/personal On Thu, Feb 29, 2024 at 2:15 PM Amitesh Tripathi wrote: > Your website is in debug mode?? > > On Thu, 29 Feb 2024, 11:54 Ram, wrote: > >> Hi, >> >> We

Re: Python Database Migration Tool

2024-02-29 Thread Christian Ledermann
On Thu, 29 Feb 2024 at 15:01, sebasti...@gmail.com < sebastian.ju...@gmail.com> wrote: > Hey, > > i have 2 different database systems. In source postgresql and target MS > SQL. Now i have on source DBMS a database with a complete different schema > like in target DBMS. Now i search a solution

Python Database Migration Tool

2024-02-29 Thread sebasti...@gmail.com
Hey, i have 2 different database systems. In source postgresql and target MS SQL. Now i have on source DBMS a database with a complete different schema like in target DBMS. Now i search a solution where i can connect to different DBMS Systems and can make a mapping between different source

Re: Về: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-29 Thread Rajalakshmi K
Kindly add me in the group. On Sat, 24 Feb, 2024, 8:33 pm Hoàng Xuân, wrote: > Hi! Please can you add me to join the group ? Thank you ! > -- > *From:* django-users@googlegroups.com on > behalf of Benjamin Nwoke > *Sent:* Saturday, February 24, 2024 0:52 > *To:*

Re: Về: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-29 Thread Akash Shekhavat
I am interested 9834295393 On Thu, 29 Feb, 2024, 5:16 am yaamoussa-solution, < yaamoussa02di...@gmail.com> wrote: > hello i am interesting > > > Le sam. 24 févr. 2024 à 15:03, Hoàng Xuân a > écrit : > >> Hi! Please can you add me to join the group ? Thank you ! >> --

Re: Về: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-29 Thread Rajalakshmi K
My what's no 8220774724 On Thu, 29 Feb, 2024, 6:21 am Rajalakshmi K, wrote: > Kindly add me in the group. > > On Sat, 24 Feb, 2024, 8:33 pm Hoàng Xuân, > wrote: > >> Hi! Please can you add me to join the group ? Thank you ! >> -- >> *From:*

Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread Shiva Shankar Pallapu
STATIC_URL = '/static/' if not DEBUG: STATIC_ROOT = '/home/django/www-data/ example.com/static/' STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'static/'), ] Try this I Collected it from Django Documentation. On Thu, Feb 29, 2024 at 11:54 AM Ram wrote: > Hi, > > We are able to deploy our

Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread Amitesh Tripathi
Your website is in debug mode?? On Thu, 29 Feb 2024, 11:54 Ram, wrote: > Hi, > > We are able to deploy our pre-production site successfully using jenkins > deployment and as part of the deployment we do the following: > > 1. Django application with runserver > 2. Gunicorn restart > 3. Nginx

Re: Exciting Opportunity: Join Our Django WhatsApp Bulk Messaging Project!

2024-02-29 Thread Amen Guda
add On Wed, Feb 28, 2024 at 7:47 AM Prasad Ajmire wrote: > I am Interested too > +918329629820 > > [image: Mailtrack] > > Sender > notified by > Mailtrack >

Re: Why would a deployed site shows up with distorted layout

2024-02-29 Thread Muhammad Juwaini Abdul Rahman
Most probably your nginx doesn't serve endpoint 'static'. On Thu, 29 Feb 2024 at 14:24, Ram wrote: > Hi, > > We are able to deploy our pre-production site successfully using jenkins > deployment and as part of the deployment we do the following: > > 1. Django application with runserver > 2.