azuline / blossom

Boilerplate for a pretty good full stack web application monorepo.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

blossom

A platform for an excellent full stack web application developer experience.

Still pretty early WIP!

What's this?

In web applications, we can bucket most systems into two categories: Product systems and Platform systems. Product systems solve an end user problem and serve the customer. They are built on top of platform systems, which solve foundational problems and enable efficient and correct delivery.

While product systems are specific to the product being built, many products tend to share similar platform problems, especially prior to reaching scale. My pet projects have similarly shaped platform problems. blossom is a shared platform to solve platform problems across my pet projects.

More generally, blossom solves a set of common platform problems that small-to-medium scale monolithic web applications have.

blossom contains opinionated design decisions and modern library choices. All libraries are cohesively integrated together at the platform layer, so that product development can easily use all platform libraries with zero-friction.

What's in here?

blossom contains a platform that solves problems ranging from infrastructure to design.

In this section, we'll cover interesting features and design decisions that blossom contains. Each feature is further documented in its own README. This section links to those READMEs.

Generally, blossom's documentation is stored in READMEs in the repository.

Infrastructure

blossom's infrastructure currently solves for developer environments, builds, CI/CD pipelines, and service orchestration.

We operate under the assumption that hardware is already provisioned and managed with a functioning Nomad+Consul cluster. For reference, my NixOS+Nomad+Consul configurations are located here.

Backend

blossom's backend is a monolithic Python (+mypy) application backed by Postgres. Python was chosen because I am the most comfortable and efficient with Python.

Frontend

blossom's frontend is a React SPA written in TypeScript. An SPA was chosen purely for cheap cost of deployment (CDNs đź’¸).

Design

Designs are built in Figma. The Figma files are still private; might publish them later if I'm feeling cute idk~

Getting Started

Using the Codebase

TODO

Developer Environment

We use Nix to manage developer environments. All tools we use are declaratively defined in nix/. To bootstrap the developer environment and get started:

  1. Follow the Linux guide or MacOS nix-darwin guide to install Nix.
  2. Enable Nix Flakes.
  3. Install direnv and run direnv allow in the root of the monorepo.

After installing Nix and activating the developer environment, all tools and commands should work.

Monorepo Organization

The monorepo is organized at the top-level by service type. Examples of service types are frontend, backend, nix, and nomad. Each service type has its own internal organization.

Application Services

The application services (the backend and frontend services) are organized as packages. Each package solves one class of problems or feature and contains a README that document its purpose, context, and usage.

Packages are sorted into package groups. While every application service will have its own set of package groups, mainstays are:

  • foundation/ contains platform packages.
  • product/ contains the product packages.
  • codegen/ contains the packages that are produced from codegen tooling.

Inside each package group, packages are arranged in a flat structure. All package directories are direct children of a package group directory.

Note: The platform packages live in foundation instead of platform because platform is a Python standard library package.

Infrastructure

Infrastructure is structured similarly. The top level is organized by type of infrastructure.

  • flake.nix aggregates all of Nix outputs derivations into a single flake.
  • docker-compose.yaml defines all services used in the local environment.
  • nix/ contains Nix derivations for our packages, toolchains, and builds.
  • nomad/ contains Nomad service definitions.
  • .github/workflows/ contains the CI/CD pipeline configurations.

Developer Port Space

We try to avoid having multiple local services occupy the same port. The current allocations of services -> ports are:

  • 40851: Backend
  • 40852: Postgres
  • 40853: Frontend
  • 40854: Ladle
  • 40855: Visual Tests

License

Copyright 2023 blissful <blissful@sunsetglow.net>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Boilerplate for a pretty good full stack web application monorepo.

License:Apache License 2.0


Languages

Language:TypeScript 65.3%Language:Python 26.8%Language:JavaScript 4.1%Language:Nix 1.5%Language:PLpgSQL 0.9%Language:Makefile 0.6%Language:HCL 0.3%Language:Shell 0.2%Language:HTML 0.1%Language:Dockerfile 0.1%