Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

i love ci

+9 -19
+3 -18
.tangled/workflows/deploy-wisp.yml
··· 14 14 dependencies: 15 15 nixpkgs: 16 16 - git 17 - - gcc 18 17 github:NixOS/nixpkgs/nixpkgs-unstable: 19 - - rustc 20 - - cargo 21 18 - bun 22 19 environment: 23 20 WISP_HANDLE: wisp.place ··· 31 28 command: | 32 29 cd cli 33 30 34 - export PATH="$HOME/.nix-profile/bin:$PATH" 35 - 36 - nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs 37 - 38 - nix-channel --update 39 - 40 - nix-shell -p pkg-config openssl --run ' 41 - export PKG_CONFIG_PATH="$(pkg-config --variable pc_path pkg-config)" 42 - export OPENSSL_DIR="$(nix-build --no-out-link "<nixpkgs>" -A openssl.dev)" 43 - export OPENSSL_NO_VENDOR=1 44 - export OPENSSL_LIB_DIR="$(nix-build --no-out-link "<nixpkgs>" -A openssl.out)/lib" 45 - cargo build --release 46 - ' 31 + bun install 32 + bun link 47 33 48 34 cd .. 49 35 - name: Build docs ··· 54 40 bun run build 55 41 - name: Deploy to Wisp.place 56 42 command: | 57 - ./cli/target/release/wisp-cli \ 58 - "$WISP_HANDLE" \ 43 + wispctl "$WISP_HANDLE" \ 59 44 --path "$SITE_PATH" \ 60 45 --site "$SITE_NAME" \ 61 46 --password "$WISP_APP_PASSWORD"
+6 -1
apps/main-app/public/landingpage.html
··· 250 250 border-radius: 4px; 251 251 } 252 252 253 + .hero-cmd code .prompt { 254 + color: var(--text-muted); 255 + user-select: none; 256 + } 257 + 253 258 /* How it works */ 254 259 .how-it-works { 255 260 padding: 6rem 2rem; ··· 667 672 <a href="{{ATPROTO_LOGIN_URL}}" class="cta-primary">Start Deploying</a> 668 673 <a href="https://docs.wisp.place" target="_blank" class="cta-secondary">Read Docs</a> 669 674 </div> 670 - <p class="hero-cmd">or <code>$ npx create-wisp</code></p> 675 + <p class="hero-cmd">or <code><span class="prompt">$</span> npx create-wisp</code></p> 671 676 </div> 672 677 </div> 673 678 </section>