From 63ca7bc6bc93a890daf6d6f7a3082e1ca5714ff5 Mon Sep 17 00:00:00 2001 From: Ted Johansson Date: Fri, 25 Aug 2023 12:07:16 +0800 Subject: [PATCH] DEV: Add basic bin/dev script for launching in development (#23254) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have been discussing potentially adding a Procfile to help launch the application. As part of the discussions, @tgxworld also mentioned it'd be nice to have a command to launch the app in development. This allows us to encode how to start the app in code and ship that in the repo, rather than having to rely on external documentation. Newer installs of Rails come with a bin/dev script for exactly this purpose. This change adds one in retroactively for us. The script currently runs bin/ember-cli -u, which is the canonical way of starting the app for development according to documentation. I know not everyone uses this, but the point of this PR is to add the script first, then we can iterate on the means of running the app. 🙂 --- bin/dev | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bin/dev diff --git a/bin/dev b/bin/dev new file mode 100755 index 00000000000..7c377d9f63f --- /dev/null +++ b/bin/dev @@ -0,0 +1,3 @@ +#!/bin/bash + +bin/ember-cli -u