Transforming Your Business with Innovative Software Solutions

Welcome to Cygnus Loop Technology Consulting, where technology meets your unique business needs.

Our Services:

Bespoke Software Development

Tailored solutions for Small and Medium Enterprises (SMEs) seeking customized applications and expert developer support. Whether it’s enhancing efficiency or solving complex challenges, our team crafts software that aligns perfectly with your vision.

Small Business Automation Tools

Streamline your operations with our specialized automation tools. From extracting sales data to integrating leads seamlessly, our software simplifies daily tasks, empowering your business to thrive.

Why Choose Us?

  • Expertise: With years of experience, our team ensures top-notch solutions.
  • Customization: Every project is crafted to match your exact requirements.
  • Reliability: Count on us for dependable software that performs flawlessly.
  • Support: From concept to execution and beyond, we’re here for you.

Take the first step towards efficiency and growth. Contact us now to discuss how we can elevate your business through innovative technology solutions.

Setting up the Hugo website generator in CodePipeline

Last time, we used CDK to host a static website in AWS. Today we’re going to look at adding a static site generator to our pipeline so that we don’t have to create all of our pages by hand. We’ve found the Hugo static site generator to be simple and effective, so we’ll use it for this example, but the steps should apply to any similar tool. First, we’ll need a buildspec. [Read More]

Using CDK to set up a static website in AWS

Hosting a static website with S3 and Cloudfront in 2024

Setting up a static website in AWS is, in theory, very simple, and CDK makes deployment trivial. However, there are a few details that will frustrate efforts to get the job done. We’ll be setting up a static website by hosting the source files in S3. A website served out of S3 can only be on HTTP, so we’ll need Cloudfront to handle secure connections with end users. We’ll also set up a pipeline for automated deployment of updates, and assign a domain name from Route53. [Read More]