Compare commits

..

No commits in common. "ede6694cb78dd62c9559438e1114894167187929" and "a96307726cbc7e6e413e8adfb902c3d60c4125bc" have entirely different histories.

3 changed files with 2 additions and 16 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
config.js

View File

@ -8,14 +8,3 @@ Vytvoriť systém, ktorý umožňuje nahrávku reči rozpoznať a „vygenerova
- https://infosluch.sk/posunkovy-jazyk/slovnik/
- https://nepocujucedieta.sk/slovnik-detskych-posunkov/
- https://infosluch.sk/posunkovy-jazyk/prstova-abeceda/#post-content (abeceda)
#### config.js structure
```javascript
// config.js
const config = {
SUPABASE_URL: 'URL',
SUPABASE_KEY: 'KEY'
};
export default config;

View File

@ -1,8 +1,6 @@
import { createClient } from 'https://cdn.jsdelivr.net/npm/@supabase/supabase-js/+esm';
import config from '../scripts/config.js';
const supabaseUrl = config.SUPABASE_URL;
const supabaseKey = config.SUPABASE_KEY;
const supabaseUrl = 'https://manesldshonpegglmyan.supabase.co'
const supabaseKey = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im1hbmVzbGRzaG9ucGVnZ2xteWFuIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTczMDcxNzQ2NCwiZXhwIjoyMDQ2MjkzNDY0fQ.saaJeTtwYZCS3YKJYmQsAOSAEFzUVUJnoJSD8-lgLHo'
const supabase = createClient(supabaseUrl, supabaseKey)
// Select DOM elements