The code of web applications can be divided between product and platform. Product code solves end user problems; platform code enables correct and efficient delivery. Product code differs greatly between applications, but platform code can often be reused. This repository contains my generalizable platform code for web applications; boilerplate in essence.
Each of the libraries consisting the platform tightly integrate with each other to eliminate friction during product delivery.
This repository contains a superset of features; most applications will find some of them unnecessary. It is intended that features be cherry-picked and copy-pasted from this repository into specific projects.
The common code in this repository covers infrastructure, backend, frontend, and design.
The backend is a Python monolith with Postgres database.
Features:
The frontend is a Typescript React SPA (CDNs :money_with_wings:).
Features:
The design system currently has some random colors and fonts. Each application should change them.
We use Nix to manage developer environments. All tools we use are declaratively defined in nix/
.
To bootstrap the developer environment and get started:
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.
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.
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 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.We try to avoid having multiple local services occupy the same port. The current allocations of services -> ports are:
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.