azuline / blossom

Boilerplate for web applications
Apache License 2.0
11 stars 0 forks source link

blossom

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.

Contents

The common code in this repository covers infrastructure, backend, frontend, and design.

Infrastructure

Backend

The backend is a Python monolith with Postgres database.

Features:

Frontend

The frontend is a Typescript React SPA (CDNs :money_with_wings:).

Features:

Design

The design system currently has some random colors and fonts. Each application should change them.

Environment Setup

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 or MacOS 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:

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.

Developer Port Space

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

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.