Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"postCreateCommand": "pnpm i",
"features": {},
"customizations": {},
"scripts": {
"postStart": "echo 'Dev container started!'"
}
}
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ on:
push:
branches:
- main
- master

pull_request:
branches:
- main
- master


jobs:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ node_modules
dist
.DS_Store
.vscode/settings.json

#Dotfiles
.dotfiles/
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,15 @@ API backend used for meshtastic.org and associated tools.

![Alt](https://repobeats.axiom.co/api/embed/42de1569e61bc8171266ba5e0cc1dab2e0a3986b.svg "Repobeats analytics image")


## Contributing

- There's a codespace available for this repository, so you can start coding right away.
- To build the project, run `pnpm install` and then `pnpm build`.
- To run the project, use `pnpm dev`.
- To run the linter, use `pnpm biome lint`, or to fix files automatically, use `pnpm biome lint --write`.
- To run the formatter, use `pnpm biome format`, or to fix files automatically, use `pnpm biome format --write`.
- To run the type checker, use `pnpm biome check`, or to fix files automatically, use `pnpm biome check --write`.



2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.0.6/schema.json",
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"files": {
"ignoreUnknown": true
Expand Down
Loading