The start of any project is exciting, and shirtctl
is no different. Last month Blair and I announced we’re working a brand new project to bring continuous delivery to tech tees.
We set out with a goal to help tech brands create and ship cool t-shirts reliably to their fans at any time. 👕👚
From our experience, we know just how easy it is to get carried away with building technology solutions before we even understand our requirements.
This article is a summary of the principles we developed throughout first #shirtday hack, and how they informed certain architecture decisions. And since we’re building shirtctl
in the open, expect to see more posts about how we implement these as our project develops.
Our Mission:
We make it super easy for companies to build their brand and connect with the community by harnessing the awesome power of t-shirts.
How: Our MVP: For shirtctl
to work, we need to be able to join brands and fans together for the reliable transfer of merchandise.
With our MVP defined, we had everything we need to consider what high level platform architecture decisions we would need to make to build a strong technology foundation.
Requirement Principles:
* [Flexibility](#Flexibility)
* [Relentless Focus](#Relentless-Focus)
* [Security in Depth](#Secure)
* [Frugal by Design](#Frugal-Architecture)
* [Easy to Consume](#Easy-to-Consume)
Flexibility
We are going to make mistakes. Our path, like any startup, is unclear. Recognising that we are only a small team, we have to live and breath the fail-fast approach to bring shirtctl
to life as soon as possible.
If we need to change directions, we need to be able to do so quickly without having to rebuild from scratch.
Adopting Architectures:
Hybrid Cloud Architecture provides:
- Rapid deployment.
- Horizontally scalable.
- Heavily automated.
- Standardisation.
- Minimum commitment (some services are billed per 100ms).
Continuous Delivery Architecture (Continuous Integration with Continuous Delivery):
- Short software deployment cycles releasing software with greater speed and frequency.
- Incremental updates for patching and feature enhancement.
- Software release governance.
Relentless Focus
We know our main goal is to connect tech brands and their fans, not to host and manage infrastructure. We don’t have time to do the Design, Build and Run of a new infrastructure and platform service. In addition, the management overhead of a single tenancy wouldn't be time or cost effective. We are trying to shift as much as possible to managed services so we can worry just about shirtctl
and leave the rest to the to the infrastructure experts.
Adopting Architectures:
Managed Cloud Architecture:
- Responsibility abstraction (just worry about the code, 'Serverless').
- Consumption based billing.
- Pre-architected building blocks.
Serverless Architecture provides; outsourcing as much responsibility as possible so we can just worry about the code.
Security in Depth
With cyberattacks on the rise, and increasing consumer awareness of the risks of personal information being exposed, we need a modern approach to security that is simple and effective. We want to keep shirtctl
free of traditional approaches to security that are prone to failure and costly to design, build and manage.
Adopting Architectures:
Zero Trust Security Model:
- An alternative security model to not trust anything remediating the rudimentary fault in traditional strategies to only protect from the outside. In this architecture, every pillar is verified.
- All communication paths need to be encrypted especially for micro-services.
- Validation and authentication are performed between all services.
- Low cost with minimal special tooling required.
Frugal by Design
As a super interesting side-project, shirtctl
has no funding to splurge on unnecessary expenses. Just like a 1990’s startup using the garage as an office, we’re using modern architectures for their opportunities to save big on cost and time. As a public cloud consumer, we’re capitalising on the opportunities that cloud presents to pay for only what we consume.
We don’t expect to ever have to invest big in infrastructure development projects to enable our data lake or deployment pipeline, and just like we see the biggest disruptors changing their markets, we’re hoping it works for tech tees too.
Adopting Architectures:
Public Cloud Architectures:
- Consumption based billing with some products such as serverless allowing you to only pay for the CPU/RAM cycles used to run the code not the OS and below.
- Free tier pricing for certain services to help get you started allowing for experimentation with different technologies ensuring you pick the best one.
- Startup credits to be used on any service allowing you to try services that have costs associated.
Easy to Consume
With our small team and non-existant budget, we need shirtctl
to be usable by as many people as possible. So we’re starting out with a web app at https://shirtctl.com. We think you’ll like it when ready. A lot.
Adopting Architectures:
Web App Architecture:
- Availability to be accessed over the internet.
- Compatibility with many different platforms and devices.
- Very low time to get your product into the hands of your potential consumers.
Top comments (0)