DEV: Add basic bin/dev script for launching in development (#23254)

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. 🙂
This commit is contained in:
Ted Johansson 2023-08-25 12:07:16 +08:00 committed by GitHub
parent 12cdd7db1a
commit 63ca7bc6bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

3
bin/dev Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
bin/ember-cli -u