Skip to content

Commit

Permalink
Scaffold fullstack leptos app (#10)
Browse files Browse the repository at this point in the history
Also switch license to match that of hyperswitch
  • Loading branch information
srid authored Aug 2, 2023
1 parent f3915c1 commit 9362e92
Show file tree
Hide file tree
Showing 28 changed files with 3,453 additions and 108 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci-nix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "CI Nix"
on:
pull_request:
push:
jobs:
build:
name: All flake outputs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- run: nix run nixpkgs#nixci
20 changes: 0 additions & 20 deletions .github/workflows/ci.yaml

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
result
/target
/result
/result-lib
/dist
.direnv
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"recommendations": [
"rust-lang.rust-analyzer",
"mkhl.direnv",
"bbenoist.nix"
"jnoortheen.nix-ide",
"bradlc.vscode-tailwindcss"
]
}
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"nix.enableLanguageServer": true,
"nix.serverPath": "nil"
"nixEnvSelector.nixFile": "${workspaceRoot}/shell.nix",
"rust-analyzer.cargo.features": "all",
"editor.formatOnSave": true,
// https://twitter.com/sridca/status/1674947342607216641
"editor.inlayHints.enabled": "offUnlessPressed"
}
Loading

0 comments on commit 9362e92

Please sign in to comment.