DEV Community

Cover image for Deploying An App: 5 things I learned
Samarth Chitgopekar
Samarth Chitgopekar

Posted on • Updated on

Deploying An App: 5 things I learned

Read this if you want details about the actual app - this will not impact your understanding of my tips!
6 months ago, I set out to develop the perfect evidence procurement tool for High School Debate. That 'perfect tool' happened to be Cuttr:
Cuttr
Pretty quickly, some friends gave me their two cents and the program evolved into Cut-It. This was the first application I wanted to deploy to thousands of regular people. Here's what our latest beta version looked like:
Cut-It Beta
Finally, this summer, after months of work, I launched Cut-It 1.0, our first release version. If you thought the jump from Cuttr to Cut-It beta was cool, check this out:
Alt Text

I'm aware many of you have no idea what makes this project useful because High School Debate tech isn't exactly commonplace in dev circles. Luckily that's not the point of this post. When deploying Cut-It, I had to go through several hurdles and frankly, if I were rebuilding this project from scratch, I would do it completely differently. My advice should apply to anyone, so that's the point of this writeup.


Obligatory Promotion: Cut-It is open-sourced and we're looking for contributors! You can get it at cutit.cards.

Before we start, let me briefly explain the tech stack for Cut-It:

  • The project is written in Python
  • Qt (PyQt5) is used as a GUI framework (Cuttr used tkinter, though I quickly realized this was far too underpowered)
  • Binaries are built with PyInstaller

Now, here's my advice:

1. Don't use Python.

Although I like it's easy syntax, I found PyInstaller to be shaky at best. After working with Go (a compiled language), I got jealous of how easy it was to build and ship packages since it builds to a single binary. For reference, when I tried using the --onefile option with PyInstaller, it took me almost 20 seconds to run the program.

This comparsion might not be the fairest (Go is compiled, Python is interpreted), but the difference still stands. Even with other interpreted languages like Javascript, build processes still felt a lot cleaner. That could just be me, but regardless, I'd still go with Go over Python - especially now that it seems to have well-developed (albeit unofficial) Qt bindings.

2. Have multiple devices ready.

If you want to create a cross-platform desktop app, you're going to want to deploy on Windows and MacOS at a minimum, and probably Linux too. Windows and Linux are easy to do, but MacOS is a pain if you don't have a Mac. I tried using Scaleway, a Mac rental service, to rent a Mac to run PyInstaller on. It was a nightmare. The lag was unbearable and I had to end up building it on a friend's Macbook Air.

If you want to shell out $25/day (1 day minimum due to Apple's license) you can rent an instance from AWS. I'd imagine the lag would be minimal, since the servers would be in the US whereas Scaleway's are all in Paris. This project is open sourced and has no sponsorships, so I really didn't want to spend hundreds of dollars a year just to build it for MacOS, which is why I just decided to buy a Mac. This way, I can run Windows 10 with Bootcamp, Linux, and OSX on the same device.

3. Keep some cash on you.

Even if you're keeping your project free, you're still going to have to pay $99/yr. for Apple's Developer Program to get a Mac certificate (albeit Apple's price also gets you access to deploy to the iOS and Mac App Stores, among other things) and about $100 to get a 1 yr. Windows certificate from a provider. I consider these to be investments in yourself as a developer rather than a particular project, so I register them under my name. This way, I don't have to buy new certificates anytime I want to distribute something (though if you're building a major application you might want to consider doing so).

Keep in mind, this is a nice-to-have feature if you're building for developers - most of us will know the pains of getting certificates and it won't significantly harm your downloads to users conversion factor. However, if you're considering deploying to the 'general population', it becomes a requirement if you want people to actually use your program - those warning messages can be concerning. MacOS doesn't even immediately present you with the option to open an unsigned file, which is why I'd reccommend getting an OSX certificate through the Apple Developer Program over a Windows one if you have to pick.

4. Think ahead.

If you're going to be pushing any form of an update to your code, you need either an autoupdater or a built-in update notifier. Now the first option is still more difficult than it has to be - I haven't found a good cross platform autoupdater. I chose to implement a built-in update notifier instead. Here's a generic rundown of what I did:

On start:
1. Poll the GitHub releases page (using the GitHub API) for the latest release
 - If the latest release version == the current software version, ignore the rest of these steps and load directly to the program
2. In the release description, check for a throwaway tag marked '<req>' signaling that the update is required
 - If the update is required, don't offer a 'Continue without Updating' option
3. Find out what platform the code is running on
4. In the 'assets' section of the release on GitHub, find the target installer (Windows: dist-win.msi, MacOS: dist-mac.pkg).
5. Set the 'Update Now' button to open the 'browser_download_url' of the appropriate installer
Enter fullscreen mode Exit fullscreen mode

Just like that, you can use GitHub's Releases API to maintain control over your codebase. The format for accessing your releases through the api is: https://api.github.com/repos/{USERNAME}/{REPO_NAME}/releases.

Here's what https://api.github.com/repos/http-samc/cut-it/releases looks like (various nonpretinent information omitted for brevity):

[
  {
    "url": "https://api.github.com/repos/http-samc/cut-it/releases/44302713",
    "node_id": "MDc6UmVsZWFzZTQ0MzAyNzEz",
    "tag_name": "v.1.0@Release",
    "target_commitish": "main",
    "name": "Cut-It Release Version 1.0",
    "created_at": "2021-06-08T19:23:24Z",
    "published_at": "2021-06-08T19:35:56Z",
    "assets": [
      {
        "url": "https://api.github.com/repos/http-samc/cut-it/releases/assets/40352177",
        "id": 40352177,
        "name": "dist-mac.pkg",
        "content_type": "application/octet-stream",
        "download_count": 35,
        "created_at": "2021-07-15T11:32:26Z",
        "updated_at": "2021-07-15T11:34:02Z",
        "browser_download_url": "https://github.com/http-samc/cut-it/releases/download/v.1.0%40Release/dist-mac.pkg"
      },
      {
        "url": "https://api.github.com/repos/http-samc/cut-it/releases/assets/40350931",
        "id": 40350931,
        "name": "dist-win.msi",
        "download_count": 40,
        "created_at": "2021-07-15T11:17:55Z",
        "updated_at": "2021-07-15T11:19:59Z",
        "browser_download_url": "https://github.com/http-samc/cut-it/releases/download/v.1.0%40Release/dist-win.msi"
      }
    ],
    "tarball_url": "https://api.github.com/repos/http-samc/cut-it/tarball/v.1.0@Release",
    "zipball_url": "https://api.github.com/repos/http-samc/cut-it/zipball/v.1.0@Release",
    "body": "<req> ... {omitted for brevity}",
  },
...
]
Enter fullscreen mode Exit fullscreen mode

5. Know how to build installers.

This one's simple. No one wants to go through the pain of downloading, unzipping, deleting and replacing your program files/assets every time they update or install. Once again, there's obviously no crossplatform solution to this, but unfortunately, it's something you need to do reagardless. I'll keep it quick with what I used (both are free):

Bonus Tip!!!

Don't build a desktop application. At least don't make it your go-to. After finishing up all of Cut-It's targeted functionality, I quickly realized the entire project could've been implemented quicker in vanilla JavaScript. Looking back, I remember reading the Qt docs thinking "What's the Qt method for window.getSelection()?".

I think the best way to build any GUI app is just with the HTML/CSS/JS stack. If you need a "real" desktop app (accesses filesystem, etc.), you can use a JS framework, with the most popular being Electron. I'm reimplementing Cut-It as a vanilla JS site that's a progressive web app. These are being championed by lots of big companies, and you can read about how Google is doing so in Chrome (v.70+) here.

This also solves the compilation and installer development issue. Because it's a web app, you never need an autoupdater. If you're using something like AWS Elsastic Beanstalk with their Code Pipeline to host your site, you can just push to main and instantly update your user's apps. Moreover, you don't need to worry about paying for certificates.

That's all I have for now, let me know what you think down below!

Top comments (1)

Collapse
 
ladiff666 profile image
ladiff666

it's not as bad as you think, maybe python isn't the best choice to develop a desktop app but it still possible to do and you can make something good with , i use python and Qt for my desktop applications, i find that python hasn't a good community in Gui frameworks but there's evolution in these 2 years, now you can find some modern Ui tutorial in YouTube, and you can use pyqtdeploy to build your application , you can even use pyinstaller (the problem with pyinstaller isn't with pyqt but with others library, try to use hiddenimport to solve this problem).
and good luck