Skip to content

Commit

Permalink
Scaffold fullstack leptos app
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Aug 2, 2023
1 parent f3915c1 commit d866619
Show file tree
Hide file tree
Showing 29 changed files with 3,361 additions and 106 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:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- run: nix build
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
6 changes: 3 additions & 3 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,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 d866619

Please sign in to comment.