Wednesday, October 2, 2024

Re: Replay your Django app

Hi Abdul, Retrace gives you a comprehensive recording of your application's execution

It captures the entire execution of your application, including code execution paths, variable states, network requests, DOM changes, and user interactions.

You can then use Time-Travel Debugging to step forwards and backwards through the recorded execution to inspect the state of the application at any point in time.

The deterministic replays provides an exact replay of what happened, eliminating guesswork.

Hope that helps. Happy to give a demo.


On Thu, 3 Oct 2024, 02:56 Abdul Qoyyuum Haji Abdul Kadir, <abdul.qoyyuum@gmail.com> wrote:
How is it any different from reading logs forwarded to  Papertrail - cloud-hosted log management, live in seconds or getting error system alerts from  Application Performance Monitoring & Error Tracking Software | Sentry or both? And they both have a free plan.

On Wed, 2 Oct 2024 at 22:12, Henry Yates <henry@retracesoftware.com> wrote:

https://retracesoftware.com allows you to record and replay your Django app. It is a massive time saver, enabling you to investigate bugs and flaky tests with perfect reproducibility.

We have an initial user group. Members get a free for life licence in return for feedback. We have a couple of spaces that have come up. Let me know if you are interested in joining, and we can get you set up (it is very easy, with 5-10 min onboarding).


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/cedcc7e3-7f13-48ec-8db4-ebf661170910n%40googlegroups.com.


--
Abdul Qoyyuum Bin Haji Abdul Kadir
Nickname: Q

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CANVqoJ8TYtLqgsW6QdYk0npK2-qDkpiu08zSe8QiFXTLhuOQhw%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAKTQONXRTo8uLiUjfw-dpzNbN-MBsP2ZB3ZFoLW4XMTUdez_ZQ%40mail.gmail.com.

Re: Replay your Django app

Hi Henry, I am interested this project. Can you show a demo?



Can Okay
Best regards

2 Eki 2024 Çar 19:44 tarihinde Ravindra Magar <ravikrsna8@gmail.com> şunu yazdı:
Yes. Interested.

On Wed, Oct 2, 2024, 7:37 PM Henry Yates <henry@retracesoftware.com> wrote:

https://retracesoftware.com allows you to record and replay your Django app. It is a massive time saver, enabling you to investigate bugs and flaky tests with perfect reproducibility.

We have an initial user group. Members get a free for life licence in return for feedback. We have a couple of spaces that have come up. Let me know if you are interested in joining, and we can get you set up (it is very easy, with 5-10 min onboarding).


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/cedcc7e3-7f13-48ec-8db4-ebf661170910n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHMymCBu%3D_R7n%3DgtCpJffaj8uvPt9Li3JXntnH%3Duy8GReR7cww%40mail.gmail.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHywbaWXrg9SuMjPpzVTq8iU0affdR%3DCZ8ysrPLU2d7Zyb58Rw%40mail.gmail.com.

Re: Replay your Django app

Yes. Interested.

On Wed, Oct 2, 2024, 7:37 PM Henry Yates <henry@retracesoftware.com> wrote:

https://retracesoftware.com allows you to record and replay your Django app. It is a massive time saver, enabling you to investigate bugs and flaky tests with perfect reproducibility.

We have an initial user group. Members get a free for life licence in return for feedback. We have a couple of spaces that have come up. Let me know if you are interested in joining, and we can get you set up (it is very easy, with 5-10 min onboarding).


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/cedcc7e3-7f13-48ec-8db4-ebf661170910n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHMymCBu%3D_R7n%3DgtCpJffaj8uvPt9Li3JXntnH%3Duy8GReR7cww%40mail.gmail.com.

Re: Django CSS Not Loaded in Vercel app

you can look at my urls.py and add the missing path to yours.
https://github.com/nbesoro/techyao/blob/main/core/urls.py#L27 

Le mer. 2 oct. 2024 à 14:06, Sahil Gupta <gguptassahil@gmail.com> a écrit :
 
after deploying it show css files and images file on vercel but it not appearedon the web app. 
 

vercel.json


settings.py 
only pasting the relevant changes for vercel
ALLOWED_HOSTS = ['.vercel.app', '.now.sh', '127.0.0.1', 'localhost']

STATIC_URL = '/static/'
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles_build')

build_files.sh
#!/bin/bash
echo "BUILD START"
python3 -m pip install --upgrade pip  # Ensure the latest pip version
python3 -m pip install -r requirements.txt  # Install all dependencies
python3 manage.py collectstatic --noinput --clear  # Collect static files
echo "BUILD END"

my django web app is running fine on local sever with css and images, but on vercel it shows only HTML, no css and no images. my vercel app link : https://portfolio-bqgy3ipxf-sahilgupta245s-projects.vercel.app/ github repository link : https://github.com/sahilgupta245/portfolio

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d46b2ce2-554f-4ceb-ad4e-96cbdaf0e2a6n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAOtSHp-Ou_XstcWD3EE13j5uEFAvQzdT%3D9PG8xYagmBryNoPuQ%40mail.gmail.com.

Replay your Django app

https://retracesoftware.com allows you to record and replay your Django app. It is a massive time saver, enabling you to investigate bugs and flaky tests with perfect reproducibility.

We have an initial user group. Members get a free for life licence in return for feedback. We have a couple of spaces that have come up. Let me know if you are interested in joining, and we can get you set up (it is very easy, with 5-10 min onboarding).


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/cedcc7e3-7f13-48ec-8db4-ebf661170910n%40googlegroups.com.

Tuesday, October 1, 2024

Django CSS Not Loaded in Vercel app

source.png 
after deploying it show css files and images file on vercel but it not appearedon the web app. 
webapp.png 

vercel.json
vercel.png

settings.py 
only pasting the relevant changes for vercel
ALLOWED_HOSTS = ['.vercel.app', '.now.sh', '127.0.0.1', 'localhost']

STATIC_URL = '/static/'
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles_build')

build_files.sh
#!/bin/bash
echo "BUILD START"
python3 -m pip install --upgrade pip  # Ensure the latest pip version
python3 -m pip install -r requirements.txt  # Install all dependencies
python3 manage.py collectstatic --noinput --clear  # Collect static files
echo "BUILD END"

my django web app is running fine on local sever with css and images, but on vercel it shows only HTML, no css and no images. my vercel app link : https://portfolio-bqgy3ipxf-sahilgupta245s-projects.vercel.app/ github repository link : https://github.com/sahilgupta245/portfolio

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d46b2ce2-554f-4ceb-ad4e-96cbdaf0e2a6n%40googlegroups.com.

Re: Django CSS Not Loaded in Vercel app

Hi Sahil,

Thanks for sharing the details about your deployment issue. It looks like you're encountering some problems with the CSS and image files not showing up on the web app after deploying to Vercel. I think it would be beneficial for us to review the build script together for any potential issues.

Let me know when you're available to go through it, and we can hopefully troubleshoot this together!

Best,  
Ashish

On Wed, Oct 2, 2024 at 7:37 PM Sahil Gupta <gguptassahil@gmail.com> wrote:
 
after deploying it show css files and images file on vercel but it not appearedon the web app. 
 

vercel.json


settings.py 
only pasting the relevant changes for vercel
ALLOWED_HOSTS = ['.vercel.app', '.now.sh', '127.0.0.1', 'localhost']

STATIC_URL = '/static/'
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles_build')

build_files.sh
#!/bin/bash
echo "BUILD START"
python3 -m pip install --upgrade pip  # Ensure the latest pip version
python3 -m pip install -r requirements.txt  # Install all dependencies
python3 manage.py collectstatic --noinput --clear  # Collect static files
echo "BUILD END"

my django web app is running fine on local sever with css and images, but on vercel it shows only HTML, no css and no images. my vercel app link : https://portfolio-bqgy3ipxf-sahilgupta245s-projects.vercel.app/ github repository link : https://github.com/sahilgupta245/portfolio

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/d46b2ce2-554f-4ceb-ad4e-96cbdaf0e2a6n%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMKEJkc0Lm6fMefz-oJVL9xLwPypsHcsKU0WifbV9HroE7240g%40mail.gmail.com.