Skip to content
View zgover's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@data-driven-forms @aglyn

Block or report zgover

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
zgover/README.md

Zach Gover

Founder & CEO at Aglyn · Austin, TX

Most marketing leaders brief engineers. I ship the code.


What I'm building

Aglyn — an open-source, self-hostable website platform for B2B SaaS teams. A real drag-and-drop builder, multi-tenant hosting, a plugin marketplace, and a public REST API.

Run it fully managed, or self-host it with Docker against your own Firebase project — so teams working under HIPAA or SOC 2 constraints keep their data in their own infrastructure.

I write the product, price it, and sell it.

How I got here

Eighteen years on both sides of the marketing/engineering handoff:

  • Aglyn — Founder & CEO. TypeScript, React, Next.js, Node, NX, Firebase.
  • DuploCloud — Director of Marketing, seed through Series B.
  • Caringo — Director of Digital Marketing, through acquisition by DataCore.
  • Gover Development — my own practice, 2008–2016. Hundreds of client contracts.

The pattern was the same everywhere: the marketing site is a company's most-visited product surface, and it's the one the team can least afford to touch. Aglyn is my answer to that.

Stack

TypeScript React Next.js Node.js Nx Firebase Docker Swift Figma

Elsewhere

linkedin twitter aglyn.com




Total time coded since Nov 28 2016

Aglyn Logo

Aglyn

Your entire web presence. One canvas.

Aglyn is a website platform for teams who need to ship and operate their own web presence — sites, commerce, forms, media, and workflows — from one canvas, without handing it to a closed SaaS tool. Open source, self-hostable, and built by a small team in the US.

Connect with Aglyn

linkedin github twitter

Pinned Loading

  1. aglyn/aglyn aglyn/aglyn Public

    Open-source website platform with a visual builder, CMS, commerce, forms, media, workflows, and email built in. Self-hostable, multi-tenant, Apache-2.0.

    TypeScript 2

  2. [TS Missing Utility Types] Missing u... [TS Missing Utility Types] Missing utility types for TypeScript #typescript #types #reusable #utility #utility-types
    1
    ## TypeScript utility types missing 
    2
    
                  
    3
    Reusable utility types missing from TypeScript core library. Enjoy! 
    4
    
                  
    5
    
                  
  3. [Common Design Patterns] Simple, com... [Common Design Patterns] Simple, common and quick algorithms #algorithm #typescript #javascript #dart #sequence #patterns #effecient #math #facorial
    1
    ## *lang:* TypeScript
    2
    ```typescript
    3
    /**
    4
     * Recursion simple
    5
     */
  4. Quick TypeScript Guard and Helper Ut... Quick TypeScript Guard and Helper Utility Functions
    1
    /**
    2
     * Is literal type 'boolean'
    3
     *
    4
     * @export
    5
     * @param {*} val
  5. [TS String Literal Operators] Types... [TS String Literal Operators] Types for JS operators including assignment, comparison, arithmetic, bitwise, logical #typescript #javascript #utility #operator #expression
    1
    //        d8888                   d8b                                                   888
    2
    //       d88888                   Y8P                                                   888
    3
    //      d88P888                                                                         888
    4
    //     d88P 888 .d8888b  .d8888b  888  .d88b.  88888b.  88888b.d88b.   .d88b.  88888b.  888888
    5
    //    d88P  888 88K      88K      888 d88P"88b 888 "88b 888 "888 "88b d8P  Y8b 888 "88b 888
  6. JavaScript Dependency Manager for Lo... JavaScript Dependency Manager for Loading and Destroying Modules Based on it's Dependencies
    1
    export enum DependencyStatus {
    2
      WAITING = 'waiting',
    3
      LOADING = 'loading',
    4
      LOADED = 'loaded',
    5
      UNLOADING = 'unloading',