Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelstott/tech-squawks
Cloud computing tutorials and examples
https://github.com/michaelstott/tech-squawks
aws aws-certification-prep aws-study-notes cloud-computing cloud-computing-concepts cloud-computing-lab docker gcp kubernetes pulumi tutorial
Last synced: 16 days ago
JSON representation
Cloud computing tutorials and examples
- Host: GitHub
- URL: https://github.com/michaelstott/tech-squawks
- Owner: MichaelStott
- Created: 2021-04-03T03:39:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T23:35:24.000Z (6 months ago)
- Last Synced: 2024-10-20T12:25:07.623Z (2 months ago)
- Topics: aws, aws-certification-prep, aws-study-notes, cloud-computing, cloud-computing-concepts, cloud-computing-lab, docker, gcp, kubernetes, pulumi, tutorial
- Language: HTML
- Homepage: https://www.techsquawks.com
- Size: 21 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Cloud computing tutorials in programming languages such as Typescript/Javascript,
Python , and Go .## About
The aim of this [website](https://www.techsquawks.com/) is to effectively demonstrate cloud-computing concepts using small, self-contained code examples. To achieve this,
cloud infrastructure and services are managed with Pulumi, which allows cloud resources to be defined using programming languages such as Typescript, Javascript, Python, and GoFlashcards will be included at the end of each section (once content is finalized) to help reinforce key concepts.
These tutorials are very much a work-in-progress. As a result, the site structure and URLs may be subject to change.
## Development
### Website
To launch the website locally, you will need to install `hugo`:
```
$ cd web
$ hugo server
```To build the website with drafts included, run `hugo server -D`
To sync any code examples referenced in the webpage markdown, run `npm run sync`
### Code Examples
All code examples can be found under the `code` directory. All should be
deployable via:```
$ pulumi up
```The CI/CD pipeline should automatically detect new or modified projects and
ensure that `pulumi preview` runs successfully.