Deployment failed
The project was running smoothly but once I redeployed, it stopped working
Project ID: af5712a6-cd8f-4b70-93f8-1f0cace28d1d
6 Replies
Project ID:
af5712a6-cd8f-4b70-93f8-1f0cace28d1d
mind sending your logs?
https://bookmarklets.up.railway.app/log-downloader/
Isolated VM requires python to function
You'll need to install python along with nodejs in your app
you can do this by adding a
nixpacks.toml
file in your app's root with the following content:
this instructs nixpacks to use whatever it thinks your app needs ( nodejs in this case ) along with pythonwe don't necessarily want to tack on an entirely new provider, the more minimal approach of installing only the needed python nix package is often times going to work and not bloat the image as much as adding an entirely different provider to the image
adding just python 3.8 to the image would look like this in a nixpacks.toml file
you could of course need some other things the python provider installs, but it's better to start minimal first
Thank you so much for your help @Fragly @Brody