This guide walks you through running the full Supabase stack without Docker Desktop, using Podman and the Supabase CLI.
- Lightweight alternative to Docker
- Works great on Apple Silicon
- No Docker Desktop licensing constraints
This guide walks you through running the full Supabase stack without Docker Desktop, using Podman and the Supabase CLI.
| function convertToCSV(objArray) { | |
| var array = typeof objArray != 'object' ? JSON.parse(objArray) : objArray; | |
| var str = ''; | |
| for (var i = 0; i < array.length; i++) { | |
| var line = ''; | |
| for (var index in array[i]) { | |
| if (line != '') line += ',' | |
| line += array[i][index]; |
| #!/bin/bash | |
| # How to install: | |
| # exo-open "http://developer.android.com/sdk/index.html#Other" | |
| # sudo apt-get install libav-tools imagemagick | |
| # wget https://gist.githubusercontent.com/lorenzos/e8a97c1992cddf9c1142/raw/android-screen-to-gif.sh | |
| # chmod a+x android-screen-to-gif.sh | |
| # Help message | |
| function usage() { |
| public class DependentPicklistDemoController { | |
| @AuraEnabled | |
| public static List<Contact> getContacts() { | |
| return [ | |
| SELECT Id, Name, AccountId, Account.Name | |
| FROM Contact | |
| LIMIT 200 | |
| ]; | |
| } |