jckahn 3 hours ago

Directus has its small-scale and short term benefits, but I can’t recommend building a production-grade app with it. My company uses Directus and we all hate it and are desperately trying to get away from it. Avoid.

  • jaros 42 minutes ago

    I’m in a similar situation. At first it looked very promising and was benefiting us in bootstrapping the project fast but after a while you’re being slowed down by the “extensions” ecosystem. If you have a bunch of complex extensions then building all of them can take 2 minutes (m3 pro MacBook). Forget instant hot reloading.

  • tjwds 3 hours ago

    Out of curiosity, what don’t you like about it?

    • jckahn 3 hours ago

      Off the top of my head: It surfaces only useless GraphQL error messages to the front end, it’s very frustrating to stand up custom REST endpoints, and the Flow system is painful to develop with and debug. Others on my team have different gripes with it.

    • Davidiusdadi an hour ago

      Since they support so many databases the integration with specific providers is very shallow - e.g. they do not allow to make use of SQL views.

      I personally found the typescript support disappointing in general but specifically around strict null handling. Their graphql schema was also declaring far to many fields as nullable which was a deal breaker for me looking for at least one way to generate precise typescript typings.

  • golergka 3 hours ago

    How does it measure up to Hasura?

RadiozRadioz an hour ago

Had a play around with it, I'm impressed. I was very worried and put-off when I saw the nice-looking UI and flashy transitions, but this actually plays quite nicely with my database.

Unfortunately it doesn't work on Firefox 115 ESR due to

    Intl.Segmenter is not a constructor
It's just a blank screen. So it is infected by the JS change treadmill somewhat.

I have a few other thoughts from my first try:

When using Directus on a pre-existing DB, your foreign keys need to have exactly the same type as the primary keys they are referencing for Directus to pick up on the relationship. For example, if you have `customer.id INT PRIMARY KEY`, you must reference it with `order.customer_id INT FOREIGN KEY REFERENCES customer (id)`. You cannot do `order.customer_id INT NOT NULL FOREIGN KEY REFERENCES customer (id)` , else Directus won't notice.

I also found it fairly slow to pick up on schema changes I made in the DB directly, and I didn't see an obvious way to force it to discover.

When using Directus to manage the DB schema, I found the tables it created to have a generally sane and simple schema, which is refreshing. I liked the choices here more than nocodb.

I can't comment on the REST/GraphQL generation. I'm mainly interested in the admin panel features.

The compose file they provide here works: https://docs.directus.io/self-hosted/docker-guide.html

Overall I think this works best if your data model is very clean. It would probably be painful to onboard a complex legacy DB. I think this is totally fine as a small-scale org data management tool. I was going to make one of these, but I don't need to now. Thanks for sharing.

aerhardt 23 minutes ago

I wouldn't use anything like this to build it a user-facing app, but how does it compare to something like Django admin?

xvinci 3 hours ago

Microsoft has something very similar (i did not do a full feature comparison, just speaking about apis and auth) which is mit licensed. Works also with on-prem databases despite it's name. https://github.com/Azure/data-api-builder

masonwr 26 minutes ago

I have had great luck with Directus building small/medium size apps. Keep up the good work!

denvrede an hour ago

Does anybody know something like Directus (building REST APIs on top of Postgres) with the ability to hook in custom authorization logic? (E.g. to do FGA checks before returning data)

  • bigjump an hour ago

    Pretty sure you can do this with hooks / flows in Directus.

4ndrewl 2 hours ago

This seems very similar to Hasura? What does it compete with them on?

Keyframe 4 hours ago

seems cool, but weird non-oss license ahead warning.

  • lol768 an hour ago

    It used to be actual FOSS but then they went down the route of making it nonfree.

    I sort of get why, but not really a fan of how they went about doing it (and arbitrary "revenue-based" thresholds really don't work for businesses that operate on a commission/agent basis - you can have a massive turnover but huge cost-of-sales - it's a very blunt instrument). For that reason I've kept self-hosting the older, actual-FOSS versions and they're just sat behind auth. I've not looked at alternatives yet but would be interested in any suggestions

  • yladiz 4 hours ago

    It’s free for individuals and organizations that make less than $5 million in revenue. Seems fine and not weird to me?

    • speedgoose 4 hours ago

      If a fair offer, but it’s not open source compatible.

      • yladiz 3 hours ago

        Sure, but am I missing something and it says it’s open source?

        • rustc 3 hours ago

          > From indie devs to enterprise teams, our growing community is building faster with an open source backend built from the ground-up for developers.

          From https://directus.io.

        • claytongulick 3 hours ago

          They used to be open source, and actively advertised themselves as such.

          Around two years ago they changed their license.

          I used to be a big champion, and used it at a Healthcare organization I was the CTO of.

          After the license change, I moved on to other solutions. Not because of the cost, but because I couldn't justify the risk of building systems on top of a non-open platform. I've seen too many vendor relationships sour over the years.

          Also, IIRC, the 5 million threshold isn't just for revenue, it includes funding (or at least it used to, not sure if it still does).

          • lol768 41 minutes ago

            > I used to be a big champion, and used it at a Healthcare organization I was the CTO of.

            Same, it was a real shame to see it change in this way.

            I'm also not impressed with how they've gone about doing it; no transparency on pricing for the self-hosted solution, you have to be subjected to a sales call to even get a quote. They're clear that they use "total finances" for trying to determine how much to charge you, which has its own issues with some business models.

            The money also seems to be going towards lots of activities that have very little to do with actually .. building the core of the CMS. This whilst there's still fairly fundamental missing validation logic, even in the now-paid SaaS product [1]. How much of the now-$500 a month plan for 10 users goes towards the "Directus TV" (with content such as "Live scenes from our team with ambient music to help you get into the flow when you're coding") nonsense?

            It was enough to put me off.

            [1] https://github.com/directus/directus/discussions/2993

          • include 3 hours ago

            "I moved on to other solutions (...)", which ? kthx

    • luke-stanley 3 hours ago

      It's not a normal license. It's not worth the hassle.

  • the_real_cher 3 hours ago

    I think like me you saw the cloud section and thought it was a paid product for a minute.

pacifika 2 hours ago

If you’re dealing with pure SQL of a third party system, instead of an API, then you’re designing the API without domain knowledge. This is a problem in my experience.