Skip to content

Commit cbac8ec

Browse files
Alvin Januarjumping-dragon
Alvin Januar
andcommitted
Merge Leptos w/ Tailwind integrations (#3)
* feat: add leptos_axum integration * feat: enable json axum api * feat: add tailwind css to leptos * chore: add node & bun to install tailwind node_modules * chore: fix build and deploy job to only run on main commits --------- Co-authored-by: Alvin Januar <[email protected]>
1 parent f4bfeba commit cbac8ec

17 files changed

+2489
-639
lines changed

.github/workflows/terraform.yml

+17-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: 'Terraform'
33
on:
44
push:
55
branches: [ "main" ]
6-
pull_request:
76

87
permissions:
98
id-token: write
@@ -48,12 +47,28 @@ jobs:
4847
- name: Setup Zig
4948
uses: goto-bus-stop/setup-zig@v2
5049

50+
# Setup Nodejs
51+
- name: Use Node v20
52+
uses: actions/setup-node@v1
53+
with:
54+
node-version: 20
55+
56+
# Install & Build repo
57+
- name: Use Bun to install and build
58+
uses: oven-sh/setup-bun@v1
59+
- run: bun install
60+
5161
- name: Setup Cargo Lambda
5262
run: cargo binstall cargo-lambda -y
63+
64+
- name: Setup Cargo Leptos
65+
run: cargo install --locked cargo-leptos
5366

5467
# Build with Cargo Lambda
5568
- name: Build
56-
run: cargo lambda build --release --arm64 --all
69+
run: |
70+
cargo leptos build --release
71+
cargo lambda build --release --features=ssr --no-default-features --arm64 --all
5772
5873
# Initialize a new or existing Terraform working directory by creating initial files, loading any remote state, downloading modules, etc.
5974
- name: Terraform Init

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
.DS_Store
44
/infra/.*
55
/infra/terraform.tfstate*
6-
/.infracost
6+
/.infracost
7+
/node_modules

0 commit comments

Comments
 (0)