Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
fu050409 committed Nov 18, 2024
0 parents commit 8a2a5cb
Show file tree
Hide file tree
Showing 20 changed files with 5,626 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"words": [
"chrono",
"farmfe",
"signin",
"surrealdb"
]
}
14 changes: 14 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test
on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Setup Surrealdb
run: docker run --rm --pull always -p 5176:8000 surrealdb/surrealdb:latest start --user root --pass root
- run: cargo test --verbose --all-features
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Rust
/target

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.sln
*.sw?

# Datas
/content
Loading

0 comments on commit 8a2a5cb

Please sign in to comment.