Full-Time

Database Engineering Manager

Squarespace

Squarespace

1,001-5,000 employees

SaaS website builder with hosting

Compensation Overview

€93k - €143k/yr

+ Stock Options

Dublin, Ireland

Hybrid

Hybrid role; onsite 3 days per week in Dublin.

Category
Software Engineering
Required Skills
Git

Get referred to Squarespace

See people who can refer or advise you

Requirements
  • 3+ years of recent experience managing a Product Engineering team of four or more engineers.
  • 7+ years of industry experience deploying apps across large codebases with many contributors.
  • Ability to fluently translate, document and present technical concepts to non-technical stakeholders.
  • Strong technical foundations to navigate the inherent tradeoffs with product engineering decisions.
  • A manager who prioritizes an inclusive culture of psychological safety with technical rigor.
Responsibilities
  • Nurture high-performing software engineers by guiding navigation when there is ambiguity.
  • Distill the scope of the team and help hire a balanced group of engineers that will excel as a unit.
  • Grow the career development of direct reports through regular 1:1s with direct, actionable feedback.
  • Celebrate wins that motivate the team’s positive culture and robust dynamic.
  • Evaluate consistently to improve team efficiency and effectiveness when required.
  • Evolve a deep understanding of local systems to identify appropriate architectural decisions.
  • Thread with Product, Design & Engineering to champion, define and execute an optimal roadmap.
  • Bond across Engineering, Product, Design, Marketing, Data Science and Business Operations.

Squarespace offers an all-in-one SaaS platform to build, host, and manage websites, blogs, portfolios, and online stores with drag-and-drop templates and no coding. It works through a browser-based editor that lets users customize templates, publish pages, and manage domains, hosting, and e-commerce with built-in tools and secure payments (Stripe/PayPal), plus marketing features. It differentiates itself by pairing template-driven design, hosting, domain management, and marketing tools under a single subscription, and it expands its ecosystem through acquisitions and partnerships. Its goal is to help individuals and small businesses create and grow their online presence easily.

Company Size

1,001-5,000

Company Stage

IPO

Headquarters

New York City, New York

Founded

2003

Get referred to Squarespace

See people who can refer or advise you

Simplify Jobs

Simplify's Take

What believers are saying

  • March 12 2026 launched Balance, expanding monetization beyond websites into business finance.
  • Squarespace's July 2026 limited-release tools target creators selling scarce inventory and bookings.
  • Status history shows fast incident resolution, and no August 2026 outages today.

What critics are saying

  • July 29 2026 connectivity issues hit sites, dashboards, Acuity, and billing together.
  • Acuity disruptions on May 19 2026 and August 12 2026 expose operational fragility.
  • Permira take-private disputes and Delaware lawsuits keep management focused on deal fallout.

What makes Squarespace unique

  • Squarespace Balance tied payments, rewards, and Visa spending into one workflow.
  • October 2025 Perplexity Comet partnership positions Squarespace inside AI-led business creation.
  • Reserved Cart, quantity limits, and Pay Links strengthen its design-first commerce stack.

Help us improve and share your feedback! Did you find this helpful?

Benefits

Health insurance with 100% premium covered for you and your dependent children

Fertility and adoption benefits

Retirement benefits with employer match

Flexible vacation & paid time off

Up to 20 weeks of paid family leave

Equity plan for all employees

$100 per month remote stipend

Education reimbursement

Employee donation match to community organizations

7 Employee Resource Groups across locations

Growth & Insights and Company News

Headcount

6 month growth

-1%

1 year growth

-1%

2 year growth

0%
Beyond Space Studio
Aug 5th, 2026
From custom Sitemaps to llms.txt: latest Squarespace experiments with Cloudflare.

From custom Sitemaps to llms.txt: latest Squarespace experiments with Cloudflare. Wednesday, 5 August 2026 Introduction & background. Earlier, I published a tutorial on How to Add llms.txt to Squarespace. Since then, Squarespace introduced native support for llms.txt on Squarespace 7.1 sites. However, native support is still lacking on Squarespace 7.0, and site owners have zero control over custom HTTP response headers, markdown content negotiation, or Content-Signal declarations. Honestly, the actual business utility of llms.txt remains controversial in the SEO and web dev community. Is it genuinely driving AI citations, or is it just another trendy file crawlers ignore? To find out, I set up a live experiment on Beyondspace Studio to test how AI bots and scrapers interact with llms.txt, robots.txt, and sitemap.xml under real-world conditions. In this post, I will walk through how I used Cloudflare Workers to proxy Squarespace's native robots.txt and sitemap.xml, serve a custom /llms.txt, and track AI crawler activity. markdown // Beyondspace Studio - AI & Crawler Discovery Experience // Intercept endpoint responses for /llms.txt, /robots.txt and sitemap.xml on www.beyondspace.studio // Robots.txt signals follow Cloudflare https://contentsignals.org/ const LLM_CONTEXT_DOCUMENT = `# Beyondspace Studio > Specialized web development agency and Squarespace Circle Platinum Partner crafting custom extensions, workflow utilities, and advanced interactive UI components. Servicing 10,000+ active sites to enhance front-end site performance and content editor productivity. ## Primary Tooling - [Lightbox Studio](https://www.beyondspace.studio/lightbox-studio): Feature-rich modal & media lightbox system supporting pan/zoom, responsive video galleries, inline PDF rendering, and granular caption management. ## Extended Product Directory - [Ground Control](https://www.beyondspace.studio/freebies/ground-control) (Free / PWYW): Consolidated dashboard for configuring site extensions and managing active Squarespace plugins. - [Synced Blocks](https://www.beyondspace.studio/synced-blocks): Global content block synchronizer ensuring real-time site-wide updates from a single source edit. - [Paperless Flip](https://www.beyondspace.studio/paperless-flip): Embedded document renderer converting static PDFs into interactive, flippable digital publications. - [Macroom Viewer](https://www.beyondspace.studio/macroom-viewer): High-fidelity canvas viewer engineered for gigapixel images without aggressive compression artifacts. - [Squarespace Datepicker](https://www.beyondspace.studio/datepicker): Native-looking date UI input utility for checkout funnels and custom Form Blocks. ## Verification & Metrics - Tier: Squarespace Circle Platinum Partner - Deployment Base: 10,000+ globally configured web applications - Feedback Record: 300+ validated 5-star ratings logged via [Trustpilot](https://www.trustpilot.com/review/beyondspace.studio) and store transactions ## Specialized Capabilities - Bespoke Squarespace Extension & Plugin Architecture - Tailored Web Engineering (Advanced JavaScript & CSS Injection) - Content Operations & Editor Speed Enhancements - Enterprise Site Audits, Maintenance, & System Care ## Communication Channels - Domain: https://www.beyondspace.studio - Technical Support: [email protected] ## Automated Agent Protocols - Indexing & Citation: Allowed - Model Training Usage: Allowed - Autonomous Agent Operations: Allowed `; const ROBOTS_HEADER_DECLARATION = `# Content Signals Specification Compliance # Reference: https://contentsignals.org/ User-agent: * Content-Signal: search=yes, ai-input=yes, ai-train=yes `; export default {async fetch(request) { const { pathname} = new URL(request.url); switch (pathname) {case '/llms.txt': return new Response(LLM_CONTEXT_DOCUMENT, { status: 200, headers: { 'content-type': 'text/markdown; charset=utf-8', 'cache-control': 'public, max-age=3600',},}); case '/robots.txt': {const originResponse = await fetch(request); const originContent = await originResponse.text; return new Response(ROBOTS_HEADER_DECLARATION + originContent, { status: originResponse.status, headers: { 'content-type': 'text/plain; charset=utf-8', 'cache-control': 'public, max-age=3600',},});} case '/sitemap.xml': {const agent = request.headers.get('user-agent')??? 'Unknown Agent'; const referrer = request.headers.get('referer')??? 'Direct Access'; const connectingIp = request.headers.get('cf-connecting-ip')??? '0.0.0.0'; console.log( `[Sitemap Access Log] Timestamp: ${new Date.toISOString | IP: ${connectingIp} | User-Agent: ${agent} | Referrer: ${referrer}`); return fetch(request);} default: return fetch(request);}},};

TechRadar
Aug 5th, 2026
One.com just rebuilt its website builder around conversational AI - and it can modernize your old website in an instant.

One.com just rebuilt its website builder around conversational AI - and it can modernize your old website in an instant. Published 3 hours ago Modernize your old website instantly with the power of AI * One.com has launched Aida, a new all-in-one AI website builder * You can input your website URL and Aida will instantly modernize it * Other tools include online sales, booking system, blog, custom domain email, and hosting. One.com, one of the biggest web hosting providers, recently announced the launch of its new Aida AI website builder. Aida takes an all-in-one approach to website building, leveraging conversational AI. Users can simply describe their business idea in chat, letting the AI work behind the scenes to turn it into a complete website - all without any design or coding knowledge. What's new with Aida? Aida can help small businesses bring dated websites into the modern era with an instant modern redesign. In practice, this means users can input an existing URL, and Aida will instantly transform it into a modern website. Latest Videos FromTechRadar ChatGPT vs. Claude 0 seconds of 1 minute, 29 seconds Volume 0% Tools like this offer a lifeline for some small businesses that don't have the budget to undertake major modernization projects on their websites. Removing the need to pay website agencies to build simple websites and undertake routine maintenance. Moving beyond website building, you can also use Aida to set up and manage operational tools including online stores, booking systems, blogs, custom domain email, and hosting. While Aida handles the day-to-day tasks of design and setup, One.com maintains 24/7 human support, offering a crucial safety net for any complex issues that may need a human touch. One.com joins a string of website builders including Wix, Squarespace, and GoDaddy that have launched all-in-one AI website building and business growth tools.

DainoStore
Aug 5th, 2026
DainoStore vs Squarespace for online stores.

DainoStore vs Squarespace for online stores. Squarespace is known for gorgeous website design. But for creators selling digital products, it may not be the best fit. Pricing. Squarespace: $33 to $65/month for commerce plans, plus 3% transaction fee on the cheapest plan. DainoStore: 0% to 2% progressive fees, capped at $1,000/year. Squarespace costs $396 to $780/year minimum, regardless of sales. DainoStore costs nothing until you earn. Digital product support. Squarespace added digital product selling but it feels bolted on. DainoStore was built for digital products from day one. When Squarespace is better. If you need a full website with a blog, portfolio, and store all in one, Squarespace's design tools are excellent. When DainoStore is better. If you primarily sell digital products and want lower costs with more commerce features, DainoStore is the better choice.

PR Newswire
Jul 14th, 2026
Squarespace launches limited release tools to help entrepreneurs build hype and manage exclusive product drops

Squarespace has launched a suite of tools designed to help entrepreneurs manage limited-release sales. The platform now offers features including Reserved Cart, which holds items during checkout with a countdown timer, and Quantity Limits to prevent single buyers from purchasing all available inventory. The tools also include Mini Cart for streamlined checkout, Express Checkout for one-click purchases via digital wallets, and Pay Links for sharing direct checkout access through text, social media, email, and QR codes. Additional features like Low Inventory Badges and email campaigns help merchants build anticipation and signal scarcity. Kevin Doerr, Squarespace's president, said entrepreneurs are moving away from constant discount models towards curated, exclusive releases. The tools are available globally today, with access varying by subscription plan.

Squarespace
Jul 14th, 2026
Squarespace releases tools to support selling in limited releases and drops.

Squarespace releases tools to support selling in limited releases and drops. Today, Squarespace announced a comprehensive suite of tools specifically designed to support entrepreneurs selling in limited releases. From highly anticipated merchandise drops to exclusive service bookings, the new tools equip sellers with everything they need to turn limited availability into highly sought after sales. For a ceramicist releasing a batch of one-of-a-kind pieces, a tattoo artist opening their calendar for new bookings, or a yoga teacher offering capped seats for their next retreat, selling in limited releases is a powerful way to grow a business and create real demand for the work. "We're seeing entrepreneurs shifting away from always-on discount models and toward highly curated, exclusive releases that celebrate the value of their work," said Kevin Doerr, President of Squarespace. "With its new limited release selling tools, Squarespace is putting entrepreneurs in control of when and how they sell - reducing the operational burden and giving them everything they need to build hype, handle surges in demand, and deliver a seamless checkout experience. Unlike fragmented tech stacks that require merchants to patch together different plugins for landing pages, inventory, and checkout, Squarespace's latest offering packages them into a single, beautifully designed platform. Key features supporting limited release selling include: * Exclusive & urgency driven shopping: A new Reserved Cart holds items during checkout for a limited time, complete with a countdown timer. Items are automatically released back into the storefront if a purchase isn't completed in time. * Inventory management: Merchants can also set Quantity Limits so shoppers can only purchase a set amount of items per release, preventing a single buyer from sweeping inventory. * Frictionless checkout: Mini Cart presents a shortcut to checkout so customers don't have to navigate away from the store page to view their cart or begin checkout. Express Checkout surfaces available digital wallets for a one-click purchase. Pay Links let merchants share a direct path to checkout via text, social, email, and QR code. * Hype & demand generation: Low Inventory Badges and Email Campaigns help merchants build anticipation before a release and clearly signal scarcity to drive conversions. Squarespace's limited release tools are available globally today, with availability varying by subscription plan. Learn more about how to set up a release and start selling with exclusivity here. * 1 Likes * Share