Commit 14122f75 authored by Elsa Pekridou's avatar Elsa Pekridou
Browse files

init

parents
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+7 −0
Original line number Diff line number Diff line
Dockerfile
.dockerignore
node_modules
npm-debug.log
README.md
.next
.git

.env.example

0 → 100644
+13 −0
Original line number Diff line number Diff line
# `openssl rand -base64 32`
NEXTAUTH_SECRET=
NEXTAUTH_URL=
NEXTAUTH_URL_INTERNAL=http://localhost:3000
AUTH_TRUST_HOST=true

POSTGREST_ENDPOINT=
NEXT_PUBLIC_POSTGREST_ENDPOINT=

# MQTT Client
MQTT_URL=mqtts://
MQTT_USER=
MQTT_PASS=

.eslintrc.json

0 → 100644
+6 −0
Original line number Diff line number Diff line
{
  "extends": [
    "next/core-web-vitals",
    "next/typescript"
  ]
}

.gitignore

0 → 100644
+39 −0
Original line number Diff line number Diff line
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Postgres Data
pgdata/

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

.vscode/settings.json

0 → 100644
+3 −0
Original line number Diff line number Diff line
{
}
 No newline at end of file