A repository dedicated to collating and collection useful snippets, patterns and examples for use in a variety of settings. https://code.liampietralla.com/
Go to file
Liam Pietralla cd669cd4d6
All checks were successful
Build, Test & Publish / Build (pull_request) Successful in 18s
Build, Test & Publish / Build and Publish Container Image (pull_request) Has been skipped
Build, Test & Publish / Deploy to Infrastructure (pull_request) Has been skipped
update ci
2024-09-05 14:07:14 +10:00
.github/workflows update ci 2024-09-05 14:07:14 +10:00
.vitepress initial commit 2024-09-05 13:54:08 +10:00
docs initial commit 2024-09-05 13:54:08 +10:00
infra/ansible update ci 2024-09-05 14:07:14 +10:00
.dockerignore initial commit 2024-09-05 13:54:08 +10:00
.gitignore initial commit 2024-09-05 13:54:08 +10:00
Dockerfile initial commit 2024-09-05 13:54:08 +10:00
package-lock.json initial commit 2024-09-05 13:54:08 +10:00
package.json initial commit 2024-09-05 13:54:08 +10:00
README.md initial commit 2024-09-05 13:54:08 +10:00

LMP Snippets Store

A collection of handy code snippets and techniques that I have found useful so far in my career.

Live Site

The live site can be found at https://code.liampietralla.com/.

Running locally

To run the site locally, you will need to have Node.js installed. Once you have Node.js installed, you can run the following commands to get the site running locally:

# Install dependencies
yarn

# Run the dev server
yarn dev

Deployment

The site is deployed using a custom infrastructure setup. Ansible configuration can be found in the infra directory which is used to deploy the lastest version of the site to a DigitalOcean droplet. The site is then served using Nginx.

Deployment occurs automatically when a new commit is pushed to the main branch. This is done using GitHub Actions.