I'm the only developer at my company, and during my holidays, I have to take my notebook with me in case something goes wrong. It's not usually a big deal, but when I'm backpacking, I want to pack lighter. Can anyone suggest ways I can debug and deploy minor updates using just my Android phone?
5 Answers
Make sure you establish a good system before you leave. Set up automated rollbacks and health checks for your deployments. That way, you can minimize the likelihood of needing to fix things while you're trying to relax.
Using a phone for web development is tricky. A tablet might work better for you since smaller screens can be hard to navigate. If you can, set up a system like Termux on Android – it allows SSH and terminal access for quick terminal fixes. For more complex issues, look into cloud-based IDEs like GitHub Codespaces; it’s not perfect on a phone but gets the job done in a pinch!
Honestly, if you're on holiday, taking work with you can feel overwhelming. Ideally, you shouldn't have to worry about being on call for emergencies. If your job requires you to be available, perhaps you should talk to your boss about hiring additional support or getting paid for your availability during vacations.
You might want to set up a remote workflow. If you can access your main machine from a lighter device like a MacBook Air using a VPN and remote desktop setup, that could be more convenient than all the hassle of coding directly on your phone.
I've been in your shoes! My solution is to carry a lightweight laptop. It’s less of a hassle than using a phone for developing, plus it’s much easier to use. If you can set up a remote desktop connection on your lightweight laptop, it’ll act almost like a terminal for the real work happening on your main computer.

I’ve tried terminal software on my phone too, and it’s a struggle for anything more than quick fixes. Having a basic workflow where you can rely on CI/CD tools to catch problems before they escalate might help. Better monitoring can save you from needing to jump on your phone at all.