Skip to content

Instantly share code, notes, and snippets.

View im-knots's full-sized avatar

Knots im-knots

  • New York City
View GitHub Profile
@im-knots
im-knots / sre-rampup.md
Last active May 5, 2025 20:34
SRE Projects for Rampup

SRE Intro Projects

So you want to be an SRE? this doc will help you get there! its a living work in progress ill come back to update from time to time. SRE is not an entry level position but its also not scary!

Basics of Web Development

  1. Create a Git repository on Github or elsewhere and clone it. All of your following work must be commited regularly to this repository
  2. Create a basic web application using a modern front-end framework (Hint: npx create-react-app). Familiarize yourself with the basics of front-end web development. Learn modern Typescript, props, imports. Create multiple pages, navigation, routers. Style it. Import material-ui components. Become fluent and at ease navigating a modern web app code.
  3. Create a REST API using modern backend frameworks (Hint: Flask-Python). Connect your API to an SQL database. Write handlers to CRUD store resources of your choice in a database table. Write a test suite for your API with >90% coverage and be able to quickly run your test suite to va