• danpalmer 7 hours ago

    Reading the deployment information, there's an interesting tension here with applications that target self-hosting.

    Deploying this requires running 5 different open source servers (databases, proxies, etc), and 5 different services that form part of this suite. If I were self-hosting this in a company I now need to be an expert in lots of different systems and potentially how to scale them, back them up, etc. The trade-offs to be made here are very different to when architecting a typical SaaS backend, where this sort of architecture might be fine.

    I've been going through this myself with a hobby project. I'm designing it for self-hosting, and it's a radically different way of working to what I'm used to (operating services just for my company). I've been using SQLite and local disk storage so that there's essentially just 2 components to operate and scale – application replicas, and shared disk storage (which is easy to backup too). I'd rather be using Postgres, I'd rather be using numerous other services, background queue processors, etc, but each of those components is something that my users would need to understand, and therefore something to be minimised far more strictly than if it were just me/one team.

    Huly looks like a great product, but I'm not sure I'd want to self-host.

    • nine_k 5 hours ago

      Cheap, easy, powerful: choose any two.

      - Cheap and easy: embed into one executable file SQLite, a KV store, a queue, and everything else. Trivial to self-host: download and run! But you're severely limited in the number of concurrent users, ways to back up the databases, visibility / monitoring. If a desktop-class solution is good for you, wonderful, but be aware of the limitations.

      - Cheap and powerful: All open-source, built from well-known parts, requires several containers to run, e.g. databases, queues, web servers / proxies, build tools, etc. You get all the power, can scale an tweak to your heart's content while self-hosting. If you're not afraid to tackle all this, wonderful, but be aware of the breadth of the technical chops you'll need.

      - Easy and powerful: the cloud. AWS / Azure / DO will manage things for you, providing redundancy, scaling, and very simple setup. You may even have some say in tuning specific components (that is, buying a more expensive tier for them). Beautiful, but it will cost you. If the cost is less than the value you get, wonderful. Be aware that you'll store your data on someone else's computers though.

      There's no known (to me) way to obtain all three qualities.

      • notarobot123 5 minutes ago

        [delayed]

        • prmoustache 29 minutes ago

          > - Easy and powerful: the cloud. AWS / Azure / DO will manage things for you, providing redundancy, scaling, and very simple setup. You may even have some say in tuning specific components (that is, buying a more expensive tier for them). Beautiful, but it will cost you. If the cost is less than the value you get, wonderful. Be aware that you'll store your data on someone else's computers though.

          Easy on the magic powder. Cloud vendors manage some stuff, they mostly abstract you the hardware and package management part, but that's about it. Hosting a postgresql DB on RDS instead of a VM somewhere or on bare metal doesn't change much. Sure redundancy and scaling is easyto setup. But you still have to stay up to date with the best practices, how to secure it through network, choose and set your backup policy, schedule when to upgrade, plan the potential downtimes, what is deprecated, what is new, when price will sky rocket up because AWS doesn't want many customers to still run that old version. Same applies to many individual tech sold as "managed" by cloud vendors.

          A whole lot of admin overhead is not removed by running some individual tech as a managed service.

          You only remove a significant part of the management when the whole stack of what comprises your user facing application is managed as a single entity but that comes with another problem. Those managed apps end up being very highly coveted targets by black hat hackers. All the customers over the world usually end up being pwnable at the same time thanks to the same bug/security hole being shared. It becomes a question of when, not if, your users accounts will become public data.

          • moooo99 an hour ago

            SQLite is actually substantially more capable than many people think it is. I have served 20k MAUs from a reasonably sized single node server with some headroom to spare. Yes, it requires some thinking about efficiency and not necessarily going with nodejs + some ORM, but you can take SQLite quite far, even in a small to medium enterprise

            • creshal an hour ago

              SQLite works well with 2k DAUs on a single node, even with Django's not particularly efficient ORM. You just have to be careful about what you really need to write to DB and what's okay to either not save at all, or just throw into a log file for later offline analysis.

              • imglorp 40 minutes ago

                I don't see how these guys can think about MAU/DAU to assess DB load and sizing without talking about the rest of the app/arch details. Wouldn't ops/time be more agnostic?

              • nine_k an hour ago

                SQLite has excellent read performance.

                Insert / update performance is quite another story: https://stackoverflow.com/a/48480012 Even in WAL mode, one should remember to use BEGIN CONCURRENT and be ready to handle rollbacks and retries.

              • angra_mainyu 2 hours ago

                sqlite can scale to thousands of concurrent users.

                Personally for me the issue with all these new project management platforms is that the target demographic is either: - they're so small they can't afford to self-host - they're big enough they can afford the pro plans of more established tools

                Small companies can get by perfectly with the free/cheap plans of other tools, like Trello+Google Workspace. Heck if you're a one-man team with occasional collaborators free Trello + Google Workspace (~$6/mo) is enough.

                A box to provision the Huly stack might come out at more per month...

                • szundi 4 hours ago

                  How big the organization has to be not to be able to deploy it on a big enough machine with SQLite?

                  • nine_k 4 hours ago

                    How big is not the question. The question is how small: think self-hosting within a small non-profit or other such operation, on someone's aging ProLiant in a basement.

                    A big organization likely would just buy their hosted solution.

                    • stephenr 4 hours ago

                      Size likely has nothing to do with it, while reliability is a much bigger concern.

                      If your business uses said tool for all client work, and it's hosted on a single server (be it physical or a VM), that is a SPoF. Any downtime and your business grinds to a halt because none of your project or customer information is accessible to anyone.

                      • myaccountonhn an hour ago

                        Does everything need 99.99% availability?

                        It feels like you have to be a very big business for this to be a problem that is worth the extra engineering effort vs a single instance with an SQLite file that you backup externally with a cron job

                        • nine_k 29 minutes ago

                          Not availability but predictability.

                          Most stick trading systems and even many banking systems have availability like 40%, going offline outside business hours. But during these business hours they are 99.999999 available.

                          Usually operation without trouble is operation with plenty of resources to spare, and in absence if critical bugs.

                    • ngrilly 3 hours ago

                      You can scale quite far using SQLite. That's what Basecamp is doing with their new self-hosted chat app, named ONCE Campfire. It is designed to scale to hundreds or even thousands of concurrent users with the right hardware: https://once.com/campfire.

                      • supriyo-biswas 2 hours ago

                        > - Cheap and powerful: All open-source, built from well-known parts, requires several containers to run, e.g. databases, queues, web servers / proxies, build tools, etc. You get all the power, can scale an tweak to your heart's content while self-hosting. If you're not afraid to tackle all this, wonderful, but be aware of the breadth of the technical chops you'll need.

                        What about lowering the number of dependencies your application uses, like only depending on a database? Running a database isn't that hard, and it also greatly simplifies the overhead of running 5 different services.

                        • whiplash451 an hour ago

                          Why is open-source "cheap"?

                          It seems like you look at the cost of things only through the lens of licensing and not the cost of people to run/maintain them.

                          I have nothing against OSS per se, but in my experience, the financial analysis of OSS vs paid software is much more subtle.

                          • zmmmmm an hour ago

                            the cost of the people is represented by it not being "easy"

                          • soulofmischief 2 hours ago

                            I think the point they're making is that it's not exactly cheap either, given the amount of upfront knowledge (and time investment to gain that knowledge) required, or the cost of vetting and paying people who do have that knowledge.

                            So "cheap and powerful" just looks like "powerful", at which point you may as well make it easy, too, and go with a managed or hybrid solution.

                          • wim 7 hours ago

                            (Also building a product in the productivity space, with an option for users to self-host the backend)

                            That's interesting, for us there was actually no trade-off in that sense. Having operated another SaaS with a lot of moving parts (separate DB, queueing, etc), we came to the conclusion rather early on that it would save us a lot of time, $ and hassle if we could just run a single binary on our servers instead. That also happens to be the experience (installation/deployment/maintenance) we would want our users to have if they choose to download our backend and self-host.

                            Just download the binary, and run it. Another benefit is that it's also super helpful for local development, we can run the actual production server on our own laptop as well.

                            We're simply using a Go backend with SQLite and local disk storage and it pretty much contains everything we need to scale, from websockets to queues. The only #ifdef cloud_or_self_hosted will probably be that we'll use some S3-like next to a local cache.

                            • danpalmer 6 hours ago

                              I think that's great if you prefer to operate a service like that. Operating for one customer vs many can often have different requirements, and that's where it can make sense to start splitting things out, but if the service can be built that way then that's the best of both worlds!

                              • djhn 4 hours ago

                                What about the user interface? I’m all in on Go + Sqlite, but the user facing parts need a UI.

                                • wim 3 hours ago

                                  Sure, this is just about the syncing backend. Our "IDE" frontend is written in vanilla JavaScript, which the Go backend can even serve directly by embedding files in the Go binary, using Go's embed package. Everything's just vanilla JS so there are no additional packages or build steps required.

                                  • djhn an hour ago

                                    Are you using something like Wails or Electron to wrap this into a desktop app? I’ll have to sign up for Thymer and check it out!

                                    I’ve been prototyping my app with a sveltekit user-facing frontend that could also eventually work inside Tauri or Electron, simply because that was a more familiar approach. I’ve enjoyed writing data acquisition and processing pipelines in Go so much more that a realistic way of building more of the application in Go sounds really appealing, as long as the stack doesn’t get too esoteric and hard to hire for.

                                • notpushkin 6 hours ago

                                  Yeah, I think keeping infra simple is the way to go too. You can micro-optimize a lot of things, but this doesn’t really beat the simplicity of just running SQLite, or Postgres, or maybe Postgres + one specialized DB (like ClickHouse if you need OLAP).

                                  S3 is pretty helpful though even on self-hosted instances (e.g. you can offload storage to a cheap R2/B2 that way, or put user uploads behind a CDN, or make it easier to move stuff from one cloud to another etc). Maybe consider an env variable instead of an #ifdef?

                                  • stephenr 3 hours ago

                                    > We're simply using a Go backend with SQLite and local disk storage and it pretty much contains everything we need to scale

                                    How do you make it highly available like this? Are you bundling an SQLite replication library with it as well?

                                    • wim 3 hours ago

                                      This is probably where the real trade-off is, and for that it's helpful to look at what the actual failure modes and requirements are. Highly available is a range and a moving target of course, with every "extra 9" getting a lot more complicated. Simply swapping SQLite for another database is not going to guarantee all the nines of uptime for specific industry requirements, just like running everything on a single server might already provide all the uptime you need.

                                      In our experience a simple architecture like this almost never goes down and is good enough for the vast majority of apps, even when serving a lot of users. Certainly for almost all apps in this space. Servers are super reliable, upgrades are trivial, and for very catastrophical failures recovery is extremely easy: just copy the latest snapshot of your app directory over to a new server and done. For scaling, we can simply shard over N servers, but that will realistically never be needed for the self-hosted version with the number of users within one organization.

                                      In addition, our app is offline-first, so all clients can work fully offline and sync back any changes later. Offline-first moves some of the complexity from the ops layer to the app layer of course but it means that in practice any rare interruption will probably go unnoticed.

                                      • hypeatei 2 minutes ago

                                        > just copy the latest snapshot of your app directory over to a new server and done.

                                        In practice, wouldn't you need a load balancer in front of your site for that to be somewhat feasible? I can't imagine you're doing manual DNS updates in that scenario because of propagation time.

                                        • stephenr 2 hours ago

                                          > Servers are super reliable

                                          We have clearly worked in very different places.

                                    • cheema33 6 hours ago

                                      > Deploying this requires running 5 different open source servers (databases, proxies, etc)

                                      That is the nature of the beast for most feature rich products these days. The alternative is to pay for cloud service and outsource the maintenance work.

                                      I don't mind a complex installation of such a service, as long as it is properly containerized and I can install and run it with a single docker-compose command.

                                      • crabmusket 6 hours ago

                                        This reminds me of Sentry. This podcast interview had an interesting discussion of self-hosting: https://www.flagsmith.com/podcast/sentry

                                        > In terms of how much thought and design you put into the self-hosted story, this is one of the things that we've been slowly realizing that every time the product gets more complex and the infrastructure required that run it gets more complex. As soon as you include a time series database, then that's adding another ratchet up of complexity if you're self-hosting it, but more outside of docker name. How much did you have that in your mind when you were designing the platform?

                                        > I would say that's changed a lot over time. Early on, Sentry’s goal was to adapt to infrastructure. We use Django. We’ve got support for different databases out of the box, SQLite, Postgres, MySQL. MySQL is going all this other stuff at some point too. We had that model early on. ... Our whole goal, and this is still the goal of the company, we want everybody to be able to use Sentry. That's why the open source thing is also critical for us. Adapting infrastructure is one way to do that. Now, we changed our mind on that because what that turned into is this mess of, we have to support all these weird edge cases, and nobody is informed about how to do things. We're like, “That's all dead. We only support Postgres.” Key value is still a little bit flexible. It's hard to mess up key values. We're like, “You can write an adapter. We only support Redis for this thing. We use a technology called Cortana. We only support ClickHouse for this thing.” We're over this era of, “Can we adapt it because it looks similar?” and it made our lives so much better.

                                        • NetOpWibby 4 hours ago

                                          Venture-backed open-source typically wants the software to run everywhere because some percentage of devs will have the power to get the enterprise they work for to shell out $$$ for the hosted service.

                                          Great for short/medium-term but unsustainable long-term.

                                        • friendzis 5 hours ago

                                          Seemingly unpopular opinion, but coming from more ops related background, I always appreciate configurable deployments. If I want to test-deploy the thing on my own workstation I hope the defaults will work, but in a corporate environment I may not only want, but actually require flexibility.

                                          Infra, ops and dev intersect at different points in different orgs. Some may provide custom kubernetes operator and abstract the service away, some orgs may provide certain "managed" building blocks, e.g. postgres instance. Some will give you a VM and and iscsi volume. Some will allocate credits in cloud platform.

                                          Having the ability to plug preexisting service into the deployment is an advantage in my book.

                                          • danpalmer 5 hours ago

                                            It's not an unpopular opinion, but as far as I can tell Huly is not a configurable deployment. It's a strict set of dependencies. If you can't run Mongo, Elastic, and a bunch of other bits, then you can't run it. The more pieces they add the more likely any one potential user can't run it.

                                            The options are either to minimise the dependencies (the approach I advocated for in my parent comment), or to maximise the flexibility of those dependencies, like requiring a generic-SQL database rather than Mongo, requiring an S3 compatible object store rather than whatever they picked. This is however far more work.

                                            • d0gsg0w00f an hour ago

                                              This is clearly a case where Huly's primary focus is their complex SaaS option. The self-host option has to follow core or it bitrots. I'm fine with this trade-off personally.

                                          • dotancohen 4 hours ago

                                              > there's an interesting tension here with applications that target self-hosting
                                            
                                            Being already set up in Docker simplifies this quite a bit for smaller installs. But I notice a send tension - the introduction of some new tool on every project.

                                            I'm reasonably proficient with Docker, been using it for over a decade. But until now I've never encountered "rush". And it did not surprise me to find some new tool - actually I probably would have been surprised to not find some new tool. Every project seems to foregoe established, known tools for something novel now. I mean I'm glad it's not "make", but the overhead for learning completely new tools to understand what I'm introducing into the company is attrition.

                                            • jstummbillig an hour ago

                                              It always seems like Rails is ahead with understanding what is actually important for most people (before or if mosz people get around to understanding it). Looking at 8 in regards to this issue reinforces that once again.

                                              • nearportland 4 hours ago

                                                Thanks so much for the analysis. I wish that people would simplify shit more.

                                                I think that self hosted has two meanings and not every person that self hosts want to use docker.

                                                • KronisLV 4 hours ago

                                                  The most complex system that I've seen that you could self host is the Sentry APM solution, have a look at how many services there are: https://github.com/getsentry/self-hosted/blob/master/docker-...

                                                  That's the main reason why I've gone why Apache Skywalking instead, even if it's a bit jank and has fewer features.

                                                  It's kind of unfortunate, either you just have an RDBMS and use it for everything (key-value/document storage, caches, queues, search etc.), or you fan out and have Valkey, RabbitMQ and so on, increasing the complexity.

                                                  That's also why at the moment I use either OpenProject (which is a bit on the slow side but has an okay feature set) or Kanboard (which is really fast, but slim on features) for my self-hosted project management stuff. Neither solution is perfect, but at least I can run them.

                                                  • rbut 3 hours ago

                                                    We had to roll back to an earlier version of Sentry for this exact reason. It went from a few gb to using 18gb+ of RAM and a factor more number of containers. The older version had every feature we wanted, so there was no need to move forward.

                                                  • letters90 5 hours ago

                                                    I don't really see where you are getting that

                                                    https://github.com/hcengineering/huly-selfhost

                                                    • matly 4 hours ago

                                                      That's actually supporting the posters' argument.

                                                      Take a look at all the configs and moving parts checked in this very repo that are needed to run a self-hosted instance. Yes, it is somewhat nicely abstracted away, but that doesn't change the fact that in the kube directory alone [1] there are 10 subfolders with even more config files.

                                                      1: https://github.com/hcengineering/huly-selfhost/tree/main/kub...

                                                      • wruza 2 minutes ago

                                                        [delayed]

                                                        • KronisLV an hour ago

                                                          > Yes, it is somewhat nicely abstracted away, but that doesn't change the fact that in the kube directory alone [1] there are 10 subfolders with even more config files.

                                                          That's just what you get with Kubernetes, most of the time. Although powerful and widely utilized, it can be quite... verbose. For a simpler interpretation, you can look at https://github.com/hcengineering/huly-selfhost/blob/main/tem...

                                                          There, you have:

                                                            mongodb       supporting service
                                                            minio         supporting service
                                                            elastic       supporting service
                                                            account       their service
                                                            workspace     their service
                                                            front         their service
                                                            collaborator  their service
                                                            transactor    their service
                                                            rekoni        their service
                                                          
                                                          I still would opt for something simpler than that and developing all of the above services would keep multiple teams busy, but the Compose format is actually nice when you want to easily understand what you're looking at.
                                                      • rkagerer 6 hours ago

                                                        Well, it gives you more projects with which you can use it to manage!

                                                        • johnny22 6 hours ago

                                                          I'd like to see more of something like this https://github.com/electric-sql/pglite in combination with a redis/valkey compatible API and then you could still have it run out of the box, but allow folks to point to external servers too for both of those services if they need to scale.

                                                          Although you do lack the simple on-disk db format that way.

                                                          • j45 an hour ago

                                                            If docker is spinning all the services up it’s not as big of a deal.

                                                            Unfortunately, JavaScript based apps can be quite convoluted to output HTML and JavaScript.

                                                            • bastawhiz 6 hours ago

                                                              My philosophy is that's fine, as long as I get a terraform module that sets up the infra for me. Knowing how to glue the pieces together is often the vast majority of the effort.

                                                              • theK 7 hours ago

                                                                Can't such issues be solved by having something like a helm chart with meaningful scaling cofigs provider? Nexclozlud dies somthing like this and it makes scaling the cluster a breeze.

                                                                • XorNot 2 hours ago

                                                                  As a counterpoint though, the issue for me is "environment pollution" - not then number of products.

                                                                  My metric for this is something like Portainer, where it's installation instructions tend to be "install this Helm chart on the K8s cluster you already have" or "run this script which will install 10 services by a bunch of bash (because it's basically some developers dev environment)".

                                                                  Whereas what I've always done for my own stuff is use whatever suits, and then deploy via all-in-one fat container images using runit to host everything they need. That way the experience (at most scales I operate at) is just "run exactly 1 container". Which works for self-hosting.

                                                                  Then you just leave the hooks in to use the internal container services outside the service for anyone who wants to "go pro" about it, but don't make a bunch of opinions on how that should work.

                                                                  • emptiestplace 7 hours ago

                                                                    Are you against using containers?

                                                                    • danpalmer 7 hours ago

                                                                      Not at all, but they don't solve this problem. They help, but just because a database is in a container doesn't mean you don't need to know how it operates. Containerised databases don't necessarily come with maintenance processes automated, or may automate them in a way that isn't suitable for your needs.

                                                                      Postgres vacuuming comes to mind as an example. Pre-built docker images of it often just ignore the problem and leave it up to the defaults, but the defaults rarely work in production and need some thought. Similarly, you can tune Postgres for the type of storage it's running on, but a pre-built container is unlikely to come with that tuning process automated, or with the right tuning parameters for your underlying storage. Maybe you build these things yourself, but now you need to understand Postgres, and that's the key problem.

                                                                      Containers do mostly solve running the 5 built-in services, at least at small scale, but may still need tuning to make sure each pod has the right balance of resources, has the right number of replicas, etc.

                                                                    • TomK32 5 hours ago

                                                                      Yeah, for a software I'd use personally, if I don't see a docker-compose.yml I walk away from such a software. Painful enough to write those docker files for client projects that I work on. Huly has docker-compose files hidden and meant for dev? But a quick look into it show a lot of environment variables which is a great thing if you want to use your existing database once the software's use outgrows whatever specific limitations your docker host has. https://github.com/hcengineering/platform/blob/develop/dev/d... Their huly-selfhost project lets you run a setup to create that docker-compose file and it looks decent.

                                                                      • eastbound 3 hours ago

                                                                        Sorry I’m not, but I thought customers would prefer a Kubernetes deployment than docker-compose? Isn’t docker-compose for the programmer’s machine, and isn’t K8s the big microservice organizer of large companies, requiring sysadmins to rewrite the file? Can K8s use docker-compose.yml files?

                                                                        • matly 2 hours ago

                                                                          Kubernetes cannot ingest compose files as-is, no.

                                                                          From a users point of view: If I'm interested in a project, I usually try to run it locally for a test drive. If you make me jump through many complex hoops just to get the equivalent of a "Hello World" running, that sucks big time.

                                                                          From a customers point of view: Ideally you want both, local and cluster deployment options. Personally I prefer a compose file and a Helm chart.

                                                                          In this specific case I'd argue that if you're interested in running an OSS project management product, you're likely a small/medium business that doesn't want to shell out for Atlassian - so it's also likely you don't have k8s cluster infrastructure, or people that would know how to operate one.

                                                                      • colordrops 7 hours ago

                                                                        Super important point. I work for a very large famous company and deployed an open source project with a bit of customization which became one of the most used internal apps at the company. It was mainly front end code. It gained a lot of traction on GitHub, and the developer decided to create 2.0, which ended up having dependencies on things like supabase. I did all I could to try to deploy supabase internally but it was just too much of an impedence mismatch with our systems, so we ended up punting and going with another provider. If they just went with raw Postgres it would have been fine as we already have a Postgres provider internally, but I wasn't willing to commit to being the maintainer for a supabase and its many moving parts as a frontend engineer.

                                                                        • danpalmer 6 hours ago

                                                                          Every decision for an external dependency that a self-hosted service makes is another chance for it to have that impedance mismatch you mentioned.

                                                                          Postgres is a relatively uncontroversial one, but I had the benefit of working for a company already operating a production postgres cluster where I could easily spin up a new database for a service. I went with SQLite/on disk storage because for most companies, providing a resilient block storage device, with backups, is likely trivial, regardless of which cloud they're on, being on bare metal, etc.

                                                                          • nine_k 5 hours ago

                                                                            SQLite is fine and dandy as long as you don't do a lot of updates. SQLite locks the entire database for a transaction. It may be fine for quite long, or you may face slowdowns with just a few parallel users, depending on your use case.

                                                                        • eastbound 3 hours ago

                                                                          > I've been using SQLite and

                                                                          Postgres’ inability to be wrapped in Java (ie SQLite can be run as a Java jar, but PG need to be installed separately, because it’s in C) gives it a major, major drawback for shipping. If you ship installable software to customers, you’ll either have to make it a Docker or publish many guidelines, let alone customers will claim they can only install Oracle and then you’ll have to support 4 DBs.

                                                                          How have you found SQLite’s performance for large-scale deployments, like if you imagine using it for the backend of Jira or any webapp?

                                                                        • stephenr 7 hours ago

                                                                          When I see things like this where you need a package manager to install a different package manager to install the tool, and the only setup information assumes a bunch of stuff in Docker on a single machine, I just default to assuming it's deliberately over-engineered and under-documented specifically to dissuade self hosting.

                                                                          • wg0 5 hours ago

                                                                            I have seen open source products that pull 5 redis containers each per type of data/features alone making it all very complicated to operate. That's where the button for "Cloud Pricing" comes into play.

                                                                            • otabdeveloper4 5 hours ago

                                                                              > it's deliberately over-engineered and under-documented specifically to dissuade self hosting.

                                                                              This right here. Shitty architecture choices as a deliberate moat.

                                                                          • olebedev 5 hours ago

                                                                            As a person with russian background I am laughing on the name of the project. With all the respect to the effort, I can’t take it seriously.

                                                                            The «хули» (direct transliteration to huly) means “what a hell” or actually a bit spicier “what a f@ck”. This phrase is common for russian tradies who don’t bather to know anything but where is the nearest bottle shop and how much time left til the end of work shift.

                                                                            The name reminded me PizData project from the russian speakers.

                                                                            What. A. Joke.

                                                                            • aleksi 3 hours ago

                                                                              Huly is being built by Andrey Platov, who was previously infamously known for Xored from Novosibirsk. It is clearly intentional.

                                                                              • burgerrito an hour ago

                                                                                This reminds me of something called Kontool from Germany (IIRC). Hahaha, I already laugh thinking about it. I think it's an accounting tool, but the name has an unfortunate meaning in Indonesian... it means "dick"

                                                                                I guess this kind of things are inevitable...

                                                                                Also, if you see their Twitter account, they clearly are aware of this naming clash and actually embracing it hahaha

                                                                                • akho 3 hours ago

                                                                                  This is pretty clearly built by Russians (look at the Github contributors).

                                                                                  • culebron21 29 minutes ago

                                                                                    I knew contributor @aplatoff personally, and project name is consistent with his rough and witty character.

                                                                                    • AlexSW 3 hours ago

                                                                                      C.f. 'git', which you probably do use and etymologically is obviously a bit rude and humorous too.

                                                                                      • epolanski 44 minutes ago

                                                                                        I thought about Huli from Silicon Valley TV show, and couldn't but think "Gentlemen, and lady, of the board"

                                                                                        • jesterson 4 hours ago

                                                                                          While it may have connotations in specific languages, it doesn't signify quality of the project. Hope we agree on it.

                                                                                          • tryuseless 4 hours ago

                                                                                            Yes, cut them some Slack.

                                                                                        • ketzo 7 hours ago

                                                                                          The general category of "project management software" is obviously a very crowded one. But it's a space where I'm always genuinely excited to see an even-slightly-new take; I think anybody who's worked in a modern workplace would agree that this is very much not a solved problem, and the returns on even small improvements are so huge.

                                                                                          Best of luck to Huly, this seems pretty cool. I've never gone all-in on a fully-integrated stack like this (issue tracking + docs + chat + calls), but it seems like in an ideal world, that's what you would want? Huge integration with O365 seems like the one thing people do actually like about MS Teams, for example.

                                                                                          Also, I'm a sucker for cool laser animations, so I'm saving the home + pricing pages to an inspiration folder for sure.

                                                                                          • mrbluecoat 7 hours ago

                                                                                            lol, I too was fascinated with their clock animation at the bottom of the homepage. Not really a PM vibe, but cool nonetheless.

                                                                                          • qaq 7 hours ago

                                                                                            Interesting naming decision it's actually a swear word in russian and given that top contributors are obviously familiar with the lang. that is not a coincidence.

                                                                                            • aakresearch 6 hours ago

                                                                                              Indeed, I was going to point out that it may be an innocent mistake, like a decade old "Fedora for Raspberry PI" blunder. But now I've had a close look at the list of contributors, I cannot stop thinking it is an exquisite trolling!

                                                                                              • hexfish 4 hours ago

                                                                                                Which blunder are you referring to?

                                                                                                • pronik an hour ago

                                                                                                  Probably Pidora, which is also not an inviting name in Russian (connotation with "fag").

                                                                                                • nine_k 5 hours ago

                                                                                                  — You mean, we should make a replacement for every project management tool at once?

                                                                                                  — <Why> not?

                                                                                                  — OK, I've named the repo just that.

                                                                                                • dm33tri an hour ago
                                                                                                  • sssilver 6 hours ago

                                                                                                    Interesting username decision — “qaq” (քաք) is actually the vulgar word for “shit” in Armenian.

                                                                                                    • homebrewer 10 minutes ago
                                                                                                      • ndndjdjdn 5 hours ago

                                                                                                        (քաք) sure looks cute though

                                                                                                        • qaq 2 hours ago

                                                                                                          Good to know

                                                                                                          • aakresearch 6 hours ago

                                                                                                            I'm sure GP is aware of this. This root has "shitty" connotations in many languages, Russian included.

                                                                                                            • qaq 2 hours ago

                                                                                                              that def was not the intention :) как is how in russian

                                                                                                        • sixhobbits 3 hours ago

                                                                                                          I've long wanted something similar to this. I currently use Linear as both an ATS and a CRM, and most project management can be reduced to People/Companies, Tasks/Deals, and Pipelines.

                                                                                                          Linear is not quite flexible enough for what I need as it is too strongly in the task management camp, so I can't define a proper candidate pipeline without hacking what the "status" of each "issue" means and remembering that.

                                                                                                          Most small companies don't need dedicated solutions for project management, ats and crm, so I'd love to combine them. But I'd be looking for something more lightweight than this, maybe even local without cloud, but at least single service with sqlite or similar.

                                                                                                          Would be amazing if it was very customizable to let people build or customize their own pipelines from some basic building blocks, still keeping the slick and fast UI from Linear.

                                                                                                          I agree going after Slack at the same time is too ambitious.

                                                                                                          • dotty- 7 hours ago

                                                                                                            The pricing is very interesting. The company I work for pays $20k for Jira & Confluence and $20k for Slack every year. And this platform claims I can replace both of them for $3600/year? and it's open source? The marketing looks great, so I hope the platform is actually a good competitor. I'd be so curious to see what their revenue is every year.

                                                                                                            • danpalmer 7 hours ago

                                                                                                              Basecamp is also the same price. SaaS pricing is all made up. If you're a high-margin SaaS company the idea of spending $40k/yr for this seems... fine. If you're a small business, or you operate on retail margins, you'd laugh them out of the room, and rightly so as there are great tools at far better prices.

                                                                                                              The idea of every service charging $15-30 per user per month is a myth perpetuated by companies who themselves have that budget to spend out of their VC funding.

                                                                                                              • prmoustache 13 minutes ago

                                                                                                                SaaS pricing is based on how captive the customers can be.

                                                                                                                I am not a fan of Atlassian products, but what retains them the most aren't the qualities of the products themselves nowadays, but the integration and plugin ecosystem + the difficulty of exporting the data. Nearly every tool has an integration for either jira, bitbucket, confluence, or all of them. And you would usually dismiss any tool that doesn't have them if you are an Atlassian customer already. Once you have set that up but decide you are paying too much for it, good luck good luck telling your users they will surely lose data/formatting/integrations when migrating to some other tool. This + having to train people to use another tool while companies usually take for granted that their users won't get lost in Jira (which really isn't true).

                                                                                                                Ultimately it becomes more of a tax than a price.

                                                                                                                • imranhou 6 hours ago

                                                                                                                  Postman is one example - imagine spending 30 bucks a month on a tool that lets you call APIs.

                                                                                                                  • danpalmer 4 hours ago

                                                                                                                    Not only this, but it's worse for the fact that it's in a web browser, vs just being a native app that could be sold once, or at least with a yearly subscription for maintenance at 1/10th of the cost.

                                                                                                                    The problem is that they realised they could make more money by trying to lock companies into a proprietary API definition platform – they want the design, testing, QA, documentation, etc, all to happen in Postman.

                                                                                                                    • rty32 an hour ago

                                                                                                                      I mean, locking users into your platform is one of the most common ways companies make money and keep making money. And that works.

                                                                                                                      If you want an obvious example, look at Apple.

                                                                                                                    • ndndjdjdn 5 hours ago

                                                                                                                      I am of the opinion that curl is better simply because you are already in the command line. You can use vim fzf or bash with it. Also curl will be the same on the day you die.

                                                                                                                    • rtpg 6 hours ago

                                                                                                                      Only $15-$30 per user! What a deal!

                                                                                                                      Somebody hasn't experienced Salesforce pricing

                                                                                                                      • colechristensen 5 hours ago

                                                                                                                        SaaS pricing is so weird because for so many things because the cost to run per user is almost zero, but then the company is spending tens or hundreds of millions of dollars developing the software.

                                                                                                                        Evernote once had a valuation of nearly 2 billion, and like 400 employees.

                                                                                                                        I replaced it with Obsidian which gives me more value and it was mostly just made by two people, now they list 9 employees, one of whom is the office cat.

                                                                                                                        Each company for me was just syncing some text and maybe a few larger things like PDFs. The actual cost of that is pennies per year.

                                                                                                                    • ikeashark 7 hours ago

                                                                                                                      I can't believe Gavin Belson is rejoining Hooli!

                                                                                                                      • anonymous8888 7 hours ago

                                                                                                                        Consider the elephant

                                                                                                                        • dkga 7 hours ago

                                                                                                                          Consider the bulldog

                                                                                                                          • tjpnz 6 hours ago

                                                                                                                            The bear is sticky with honey.

                                                                                                                          • Brajeshwar 8 hours ago

                                                                                                                            I’m kind of, by default, against meaningless animation, but your reveals and the fiery ones on the Pricing page are awesome. The plans are also generous and made for someone or a small team who needs the features but is not ready to start using all the resources, right away.

                                                                                                                            Best of Luck. Looking good so far from the first browse and scroll-around.

                                                                                                                            • jonnycoder 7 hours ago

                                                                                                                              I literally just stumbled upon the designer and he posted a tutorial on the fiery pricing bento boxes: https://x.com/alex_barashkov/status/1841493887359066421

                                                                                                                              I am blown away at all of his work. He has some graphics and animation that I want to mimic for a "solar" theme I am working on.

                                                                                                                              • namanyayg 7 hours ago

                                                                                                                                He billed $90k for the website, design, and motion work. Crazy.

                                                                                                                            • gempir 5 hours ago

                                                                                                                              My thoughts just from reading the landing page, not having tested it.

                                                                                                                              I think trying to replace all these Apps

                                                                                                                              > serves as an all-in-one replacement of Linear, Jira, Slack, and Notion.

                                                                                                                              is not a wise move. I can see Linear and Jira and maybe Notion, but fighting with Slack just is an uphill battle. There are so many Chat platforms out there and many open source too.

                                                                                                                              Why would yours be the one to be at least on par with the likes of Slack? Which hasn't really happend for the others either.

                                                                                                                              JetBrains tried this with JetBrains Space [1] it used to be a knowledge platform and chat platform all with a code hosting platform, CI platform and a little more. But even an experienced dev company like JetBrains gave that up and focused on the core.

                                                                                                                              I think they should remove the chat part and stick to being a Jira + Notion replacement.

                                                                                                                              [1] https://www.jetbrains.com/space/

                                                                                                                              • johannes1234321 22 minutes ago

                                                                                                                                Thing is: You don't have to be on par with Slack. If that chat is "usable enough" but integrates well with the rest of the system, this can be a swelling point: Directly reference the tickets in a discussion, reassign, update, ... in a native integration.

                                                                                                                                With such an "Enterprise" system the choice of the chat tool is a lot more a too down decision, than a chat in a social group.

                                                                                                                                And it isn't like slack is perfect in all regards either ...

                                                                                                                                • zild3d 5 minutes ago

                                                                                                                                  The concern wouldn't be if huly chat integrates well with the rest of huly project management, video calls, docs. It would be all the other services your company uses like pagerduty, salesforce, HR apps, etc where Slack has become the "hub" for everything to integrate with.

                                                                                                                                • Terretta 23 minutes ago

                                                                                                                                  > I think trying to replace all these Apps (“serves as an all-in-one replacement of Linear, Jira, Slack, and Notion”) is not a wise move.

                                                                                                                                  As shown in the rendered billboard, they agree with you…

                                                                                                                                  "Huly: the app for – anything – and nothing"

                                                                                                                                  • beAbU 4 hours ago

                                                                                                                                    I don't think we should discount a competing product's existence just because it's a David and Goliath situation. If we all had your mindset we'd still be using MSN Chat on Windows XP or something.

                                                                                                                                    • tremarley 4 hours ago

                                                                                                                                      I think Huly would appeal to people who find peace of mind when using one companies tool, rather than 5 companies tools to do everything they need.

                                                                                                                                      Similar to how Notion became popular to people who wanted to use the same app for journaling, knowledge management and CRM, for home and work.

                                                                                                                                      Hopefully Huly pulls it off, having so many features that work well isn’t an easy task.

                                                                                                                                      • Aeolun 5 hours ago

                                                                                                                                        I think the only way they can capture some part of the market is by doing something the others are not. We don’t need another Jira + Notion clone I think.

                                                                                                                                        • Maxion 3 hours ago

                                                                                                                                          There's a reason why Redmine is still in use in many places...

                                                                                                                                        • crabbone an hour ago

                                                                                                                                          Before JIRA became ubiquitous, before Slack even existed, I used to set up company's tools with MediaWiki, Jenkins, IRC, Redmine and GitWeb. The reason I'd choose these is because I knew more or less how to install them. It wasn't based on any sort of comparison of features etc.

                                                                                                                                          Looking back at those days, I'd still take IRC over Slack any time. Just for the self-hosting part, but also because of better integration, simpler interface, simpler way of extending it to fit company's needs.

                                                                                                                                          I'd also take GitWeb over Gitlab, Bitbucket or Gitea. None of the extras offered by these tools add any real value. The only reason I want any Web interface to Git at all is to be able to link to the code from Wiki / chat.

                                                                                                                                          But, Jenkins turned out to be a really bad pick. And so is Redmine. I've tried many popular CI tools, and they are all bad, so, who knows maybe this project will do it better?.. but they don't seem to tell much about how they see things working. I also haven't found a good bug-tracking tool yet. So, maybe this project will make something better? -- Let's hope.

                                                                                                                                          ----

                                                                                                                                          Ideally, I'd prefer it if tools around project management standardized around some basic interfaces, so that no single company was tempted to create "package deals" where you choose to use crappy tools because they are packaged together with what you really want. But, I don't think it's clear to anyone what such interfaces might look like. So, this isn't happening probably in this decade... at least.

                                                                                                                                        • penguin_booze 4 hours ago

                                                                                                                                          Surely, I'm not the only one thought of Hooli and Gavin Belson?

                                                                                                                                          • tablet 4 hours ago

                                                                                                                                            My first thought as well :) Not sure the naming is good.

                                                                                                                                          • nearportland 4 hours ago

                                                                                                                                            Is there any option for self host that doesn't get attached to the boat anchor that is 'docker'??

                                                                                                                                            • maverickdev69 3 hours ago

                                                                                                                                              We’ve been using Plane CE and are really happy with it. For those who need a serious project management tool, I’d definitely recommend giving it a try. Huly looks interesting-might explore it in the future. I did try self-hosting, but the experience wasn’t great.

                                                                                                                                              https://github.com/makeplane/plane

                                                                                                                                              • nearportland 4 hours ago

                                                                                                                                                Is there any option for self host that isnt attached to the boat-anchor that is 'docker'? I want to self host this on my public self hosted environment not my LAN side self hosted environment

                                                                                                                                                • lucifer153 2 hours ago

                                                                                                                                                  Interestingly, Huly is also the sponsor of the Zig programming language[1].

                                                                                                                                                  [1]: https://ziglang.org/

                                                                                                                                                  • Havoc 3 hours ago

                                                                                                                                                    Kinda curious about the requirements. 4GB minimum.

                                                                                                                                                    Isn’t a PM platform mostly text-like?

                                                                                                                                                    Not criticising (gitlab manages same) just curious what’s driving that.

                                                                                                                                                    • avanttech 5 hours ago

                                                                                                                                                      Site looks great and opensource moniker while replacing major products with self hosting got me really interested. Checked the github and understood svelte in frontend UI. All the best on your journey. btw, Is video & audio conferencing built from scratch or does it need MS Teams and Zoom or can integrate with 3rd party providers?

                                                                                                                                                      • wg0 4 hours ago

                                                                                                                                                        I am impressed by the laser border animations on the pricing page and that laser clock. Will check later how they are built. Amazing if CSS alone has advanced that far.

                                                                                                                                                        • zuck_vs_musk 4 hours ago

                                                                                                                                                          I see 'Node.js' and I see something that's going to be unwieldy pretty soon.

                                                                                                                                                          • whyowhy3484939 2 hours ago

                                                                                                                                                            Project management strikes me as one of those fuzzy complicated looking problems that, for some reason, are always approached as a single problem that needs one UI. In my mind it is not a single problem.

                                                                                                                                                            I'd try a more modular approach because IMO a substantial part of the problem is "horses for courses": PMs and developers have very different skills and requirements. Even inside those categories there is substantial variation.

                                                                                                                                                            I see no reason why the UI for developers has to be same as for PMs and higher ups. My ideal PM solution would involve the CLI and the notion of committing changes and being able to organize information cleverly. Efficiency, bare-boned, no fluff, no pixels that add zero information. These would all be things I am interested in.

                                                                                                                                                            My boss' ideal PM solution would probably involve some unholy marriage of Salesforce, Excel and CSVs without any organization whatsoever in a screen that explodes with fireworks and deliberately slows everything down and adds lag and loading screens so you feel you are doing important work. You can tell I am jaded, but my point is, fine. Let them have it. I see no reason to approach this problem with one, fixed, set of interaction patterns.

                                                                                                                                                            It's a common theme these days for me. Why does everything has to be so monolithic? Why is everything so samey?

                                                                                                                                                            • johannes1234321 16 minutes ago

                                                                                                                                                              That's why everybody has their own Jira dashboards showing different information in different structure. Which then leads to people talking about different things.

                                                                                                                                                              There is some need of differentiation, but also need to make sure there is shared understanding on priorities and state.

                                                                                                                                                            • Brajeshwar 7 hours ago

                                                                                                                                                              Ah! You guys were Huly.App and this is a relaunch. I had tracked your earlier progress a few months back but forgot about it. Nice, again, best of luck.

                                                                                                                                                              • mib32 4 hours ago

                                                                                                                                                                Huly tut tak malo?

                                                                                                                                                                • brainzap an hour ago

                                                                                                                                                                  where can I find the api docs

                                                                                                                                                                  • nubela 8 hours ago

                                                                                                                                                                    Is it just me that when someone sells something as "everything", I immediately feels like it does nothing well?

                                                                                                                                                                    • hakanderyal 8 hours ago

                                                                                                                                                                      Your assumption is the worst case. Best case is it does the things it do "good enough".

                                                                                                                                                                    • nikolayasdf123 7 hours ago

                                                                                                                                                                      the webiste sure looks flashy

                                                                                                                                                                    • lmc 5 hours ago

                                                                                                                                                                      Is anyone using this in a team? How is the perf?

                                                                                                                                                                      • byyoung3 4 hours ago

                                                                                                                                                                        gavin belson signature edition

                                                                                                                                                                        • hajimuz 5 hours ago

                                                                                                                                                                          looks pretty convincing!

                                                                                                                                                                          • jacktheturtle 7 hours ago

                                                                                                                                                                            nice landing page, looks good.

                                                                                                                                                                            • eclipxe 7 hours ago

                                                                                                                                                                              This looks really great and love that it can be self hosted. Nice!!!

                                                                                                                                                                              • DoesntMatter22 7 hours ago

                                                                                                                                                                                idk if it's just me but if they don't' have a running demo of it I'm not even gonna spend any time unless I'm desperate