mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 00:05:36 +02:00
This adds a simple way to incorporate a centralized authentication flow. The idea is to have the user, API and SSH (for machine authentication) all in one place using `openauthjs` + `SST` We also have a database now :) > We are using InstantDB as it allows us to authenticate a use with just the email. Plus it is super simple simple to use _of course after the initial fumbles trying to design the db and relationships_
55 lines
506 B
Plaintext
55 lines
506 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Local env files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
.idea/
|
|
|
|
# Testing
|
|
coverage
|
|
|
|
# Turbo
|
|
.turbo
|
|
|
|
# Vercel
|
|
.vercel
|
|
|
|
# Build Outputs
|
|
.next/
|
|
out/
|
|
build
|
|
dist
|
|
|
|
|
|
# Debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# sst
|
|
.sst
|
|
|
|
#Bun merging errors, EVERY time :(
|
|
bun.lockb
|
|
|
|
#tests
|
|
id_*
|
|
|
|
#Rust
|
|
target
|
|
|
|
tmp
|
|
.partykit |