This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Base image | |
| # | |
| FROM public.ecr.aws/docker/library/node:24-alpine AS stage-base | |
| ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0 | |
| # Install corepack and pnpm | |
| RUN npm install --global corepack@latest && \ | |
| corepack enable pnpm && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = { | |
| productionSourceMap: false, | |
| configureWebpack: { | |
| optimization: { | |
| runtimeChunk: 'single', | |
| splitChunks: { | |
| chunks: 'all', | |
| minSize: 0, | |
| maxInitialRequests: Infinity, | |
| cacheGroups: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- | |
| Amazon S3 Bucket listing. | |
| Copyright (C) 2008 Francesco Pasqualini | |
| This program is free software: you can redistribute it and/or modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <!-- | |
| Amazon S3 Bucket listing. | |
| Copyright (C) 2008 Francesco Pasqualini | |
| This program is free software: you can redistribute it and/or modify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: "TimescaleDB stack" | |
| Parameters: | |
| KeyName: | |
| Description: Name of an existing EC2 KeyPair to enable SSH access to the instance | |
| Type: "AWS::EC2::KeyPair::KeyName" | |
| ConstraintDescription: must be the name of an existing EC2 KeyPair. | |
| InstanceAZ: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: "2010-09-09" | |
| Description: "Stack for creating EBS LVM volume" | |
| Parameters: | |
| KeyName: | |
| Description: Name of an existing EC2 KeyPair to enable SSH access to the instance | |
| Type: "AWS::EC2::KeyPair::KeyName" | |
| ConstraintDescription: must be the name of an existing EC2 KeyPair. | |
| InstanceAZ: |