Skip to content
Open
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

.idea/
.idea/

supabase/.temp
supabase/.branches
.env.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,30 @@ when you open a Pull request, we make a preview deployement. So you can view anc

You should use conventional commit messages: https://www.conventionalcommits.org/en/v1.0.0/

### Supabase
[Supabase cli](https://supabase.com/docs/guides/local-development/cli/getting-started)
Create migration

```bash
supabase migration new migration_name
```

Start local db in docker

```bash
supabase start
```
Test Migration in local Environment

```bash
supabase db reset
```
```bash
supabase migration up
```

Push change to remote db

```bash
supabase db push
```
6 changes: 5 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
images: {
domains: ['127.0.0.1','hxvpakphgbaqossrckll.supabase.co'], // aggiungi qui l'hostname del tuo bucket locale
},
};

module.exports = nextConfig
Loading