@thunder-so/thunder 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/CLI.md +65 -0
- package/.agents/METADATA.md +75 -0
- package/.agents/PRD.md +537 -0
- package/.agents/SKILLS.md +543 -0
- package/README.md +409 -0
- package/bun.lock +425 -0
- package/cli/th.mjs +45 -0
- package/index.ts +25 -0
- package/package.json +63 -0
- package/runtime/Dockerfile +44 -0
- package/thunder-so-thunder-1.1.0.tgz +0 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Use the provided runtime version to fetch base image
|
|
2
|
+
# https://gallery.ecr.aws/docker/library/node
|
|
3
|
+
ARG NODE_VERSION
|
|
4
|
+
FROM public.ecr.aws/docker/library/node:${NODE_VERSION}-alpine
|
|
5
|
+
|
|
6
|
+
# Add repos
|
|
7
|
+
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \
|
|
8
|
+
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community/" >> /etc/apk/repositories && \
|
|
9
|
+
apk update
|
|
10
|
+
|
|
11
|
+
# Install deps
|
|
12
|
+
RUN apk add --no-cache \
|
|
13
|
+
bash \
|
|
14
|
+
curl \
|
|
15
|
+
git \
|
|
16
|
+
zip \
|
|
17
|
+
python3 \
|
|
18
|
+
ca-certificates
|
|
19
|
+
|
|
20
|
+
# Install Yarn and PNPM (via corepack, included with Node)
|
|
21
|
+
RUN corepack enable && \
|
|
22
|
+
corepack prepare yarn@stable --activate && \
|
|
23
|
+
corepack prepare pnpm@latest --activate
|
|
24
|
+
|
|
25
|
+
# Set default shell
|
|
26
|
+
ENV SHELL=/bin/bash
|
|
27
|
+
|
|
28
|
+
# Install Bun
|
|
29
|
+
RUN curl -fsSL https://bun.sh/install | bash
|
|
30
|
+
|
|
31
|
+
# Update PATH for bun
|
|
32
|
+
ENV PATH="/root/.bun/bin:$PATH"
|
|
33
|
+
|
|
34
|
+
# Verify everything works
|
|
35
|
+
RUN node --version && \
|
|
36
|
+
npm --version && \
|
|
37
|
+
pnpm --version && \
|
|
38
|
+
yarn --version && \
|
|
39
|
+
bun --version
|
|
40
|
+
|
|
41
|
+
RUN rm -rf /var/cache/apk/*
|
|
42
|
+
|
|
43
|
+
# Default command
|
|
44
|
+
CMD ["bash", "-c"]
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"root":["./index.ts","./bin/astro.ts","./bin/ec2.ts","./bin/fargate.ts","./bin/lambda.ts","./bin/nuxt.ts","./bin/static.ts","./bin/template.ts","./lib/astro/client.ts","./lib/astro/index.ts","./lib/constructs/discovery.ts","./lib/constructs/vpc.ts","./lib/ec2/compute.ts","./lib/ec2/pipeline.ts","./lib/ec2/constructs/cloudwatch-agent.ts","./lib/ec2/constructs/ec2-instance.ts","./lib/ec2/constructs/user-data.ts","./lib/fargate/pipeline.ts","./lib/fargate/service.ts","./lib/frameworks/pipeline.ts","./lib/lambda/functions.ts","./lib/lambda/pipeline.ts","./lib/nuxt/client.ts","./lib/nuxt/index.ts","./lib/nuxt/server.ts","./lib/static/deploy.ts","./lib/static/hosting.ts","./lib/static/pipeline.ts","./lib/template/index.ts","./lib/template/constructs/cloudwatch-agent.ts","./lib/template/constructs/ec2-instance.ts","./lib/template/constructs/user-data.ts","./lib/template/template/fetch.ts","./lib/template/template/hydrate.ts","./lib/utils/index.ts","./lib/utils/naming.ts","./lib/utils/nixpacks.ts","./lib/utils/paths.ts","./lib/utils/vpc.ts","./stacks/AstroStack.ts","./stacks/Ec2Stack.ts","./stacks/FargateStack.ts","./stacks/LambdaStack.ts","./stacks/NuxtStack.ts","./stacks/StaticStack.ts","./stacks/TemplateStack.ts","./stacks/VpcStack.ts","./types/AppProps.ts","./types/CloudFrontProps.ts","./types/Ec2Props.ts","./types/FargateProps.ts","./types/LambdaProps.ts","./types/NuxtProps.ts","./types/PipelineProps.ts","./types/StaticProps.ts","./types/TemplateProps.ts","./types/VpcProps.ts"],"version":"5.9.3"}
|