scripts-to-rule-them-all VS django-sql-dashboard

Compare scripts-to-rule-them-all vs django-sql-dashboard and see what are their differences.

scripts-to-rule-them-all

Set of boilerplate scripts describing the normalized script pattern that GitHub uses in its projects. (by github)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
scripts-to-rule-them-all django-sql-dashboard
8 8
3,140 431
- -
0.0 4.4
over 1 year ago about 2 months ago
Shell Python
Creative Commons Zero v1.0 Universal Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

scripts-to-rule-them-all

Posts with mentions or reviews of scripts-to-rule-them-all. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-06.
  • What’s with DevOps engineers using `make` of all things?
    17 projects | /r/devops | 6 Dec 2023
    Personally I like https://github.blog/2015-06-30-scripts-to-rule-them-all/ as a pattern and then let the authors do whatever crazy thing they want from there. In my experience, 99% of repos never move past using simple shell scripts with a few common functions with that pattern, and things are kept fairly simple. A select few repositories tend to mature enough that they are able to invest in swapping towards something more testable than shell scripts, and then you just have a couple people who stick to invoking `make` from the scripts but it's fine and nobody has to think about it except them. We don't stick to that exact set of scripts, but find that as long as you don't use more than like 10ish entrypoints in `script/*`, and have at least `script/bootstrap` it's fine.
  • Scripts to Rule Them All (2015)
    1 project | news.ycombinator.com | 20 Jan 2023
  • Just: A Command Runner
    27 projects | news.ycombinator.com | 9 Jan 2023
    I dig the general idea, but question the value add over a directory of `scripts` that follow sane conventions (ie `script/test`, `script/build` etc). Is the main thing that you can do `just -l` to see available commands? I have never really reached for `make` when I've had a choice, as I've done mostly ruby, JS, or java where you have more sane, humane tools (i.e. Rake, Yarn, Maven though that one is never fun).

    My general approach is every repo should have something that follows https://github.com/github/scripts-to-rule-them-all, written in sh (maybe bash, its 2023), linted with shellcheck. When you need something fancy Rake is great or grab some nice bash command line helper and source it from all your scripts. Is a command listing really worth another dependency over what you get from `ls script` or `cat script/README` ?

  • [AskJS] What is the best way to create a common npm package for building others?
    6 projects | /r/javascript | 6 Apr 2022
  • Azure Pipeline running task in background?
    1 project | /r/devops | 30 Jun 2021
    Afaik AzDo cannot run tasks concurrently. From having had to work with azure pipelines I would highly suggest to use the github approach of Scripts to rule them all and avoiding predefined tasks unless absolutely necessary(Things that are complicated to implement and solutions already existing.
  • Why is uncoupled documentation bad?
    6 projects | news.ycombinator.com | 6 Jun 2021
    GitHub have a pattern for this called "scripts to rule them all" - https://github.com/github/scripts-to-rule-them-all - I've not fully adopted it yet but I probably should, it looks very well thought-out.
  • Script up your projects
    3 projects | dev.to | 2 Feb 2021
    People at Github made an attempt to fix this situation: scripts to rule them all. The idea is to have common set of executable scripts for common developer tasks in a script/ directory in the root of every project:
  • How to Join a Team and Learn a Codebase
    2 projects | news.ycombinator.com | 16 Jan 2021
    https://github.com/github/scripts-to-rule-them-all

django-sql-dashboard

Posts with mentions or reviews of django-sql-dashboard. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-18.
  • Datasette is my data hammer
    6 projects | news.ycombinator.com | 18 Jan 2023
    I have a sister project to Datasette called Django SQL Dashboard which works against PostgreSQL databases: https://django-sql-dashboard.datasette.io

    It used Django for the authentication layer but can otherwise work against any PostgreSQL database.

    I partly built it to help explore what Datasette could look like if it expanded to work with more databases than SQLite. That's still something I'm considering doing in the future, via a plugin hook, but it's not on my short-term roadmap.

  • How do you log all API calls in your application?
    3 projects | /r/django | 22 Dec 2022
  • Saving Filtered Querysets for Future Access
    2 projects | /r/django | 4 Oct 2022
  • Do I need to create seperate app for a dashboard?
    1 project | /r/django | 11 Aug 2021
    Reusable apps do exist (I released one myself a few months ago, https://django-sql-dashboard.datasette.io) but in most projects apps are single-use only - at which point they become little more than a code organization tool.
  • Why is uncoupled documentation bad?
    6 projects | news.ycombinator.com | 6 Jun 2021
    I use documentation systems that publish the documentation from the repo to a website. Most of my projects use Sphinx and reStructuredText for this, but I recently tried MyST (Markdown for Sphinx) and I like that a lot.

    Some examples:

    - https://docs.datasette.io serves documentation from https://github.com/simonw/datasette - which has documentation unit tests here: https://github.com/simonw/datasette

    - https://django-sql-dashboard.datasette.io/ serves from markdown in https://github.com/simonw/django-sql-dashboard - I don't have documentation unit tests for that yet

  • Dataflow, a self-hosted Observable Notebook Editor
    2 projects | news.ycombinator.com | 13 May 2021
    Weirdly my Django SQL Dashboard project fits the bill a bit here: you can build up a "dashboard" (which is a tiny bit notebook-like if you squint at it the right way) with multiple SQL queries on it, and save that either as a bookmark or as a "saved dashboard" with a URL.

    https://django-sql-dashboard.datasette.io/

    In my own work I've been using it for the kind of things that I would normally use a Jupyter notebook for - gathering together research on problems I'm trying to solve.

  • Show HN: Django SQL Dashboard
    3 projects | news.ycombinator.com | 10 May 2021
    It's hand-written CSS - there's not much of it: https://github.com/simonw/django-sql-dashboard/tree/01bb7e60...
  • Data Analysis with Django
    3 projects | /r/django | 29 Apr 2021
    I've been building a tool for this over the past couple of months called Django SQL Dashboard - it currently only works with PostgreSQL and you need to create a read-only database connection, but it then provides an interface for executing any bookmarking SQL queries plus some basic visualizations: https://github.com/simonw/django-sql-dashboard

What are some alternatives?

When comparing scripts-to-rule-them-all and django-sql-dashboard you can also consider the following projects:

govuk_design_system_formbuild

Redash - Make Your Company Data Driven. Connect to any data source, easily visualize, dashboard and share your data.

govuk-form-builder - A form builder for Ruby on Rails that’s compatible with the GOV.UK Design System.

Docusaurus - Easy to maintain open source documentation websites.

generate-package - Use as a sub-generator or plugin in your generator to create a package.json for a project. Or install globally and run with Generate's CLI.

django-sql-explorer - Easily share data across your company via SQL queries. From Grove Collab.

pure-sh-bible - 📖 A collection of pure POSIX sh alternatives to external processes.

dash - Data Apps & Dashboards for Python. No JavaScript Required.

confgen - Generate repetitive configs for vite, typescript, eslint, etc

papermill - 📚 Parameterize, execute, and analyze notebooks

datasette - An open source multi-tool for exploring and publishing data