Supabase - ~52K stars
- Designed explicitly as an open source firebase alternative
- Typescript based
- Docker support
Appwrite - ~32K stars
- Written in JavaScript and PHP
- Docker based
- Realtime support across all services
TL;DR You can't set those for an image during build time becasue Docker takes the
sysctl
configuration from the Host. So, set the config on your host machine.
As in this
link, to increase the maximum watchers, we need set fs.inotify.max_user_watches
to a higher number in /etc/sysctl.conf
.
**As a developer you have complete control over the signup and signin functionality...** | |
```shell | |
$ surreal sql --conn http://localhost:8000 --user root --pass root --ns test --db test | |
``` | |
```sql | |
-- optional : this is the default see --ns test --db test start server flags | |
-- USE NS test DB test; |
import antfu from '@antfu/eslint-config' | |
import perfectionistNatural from 'eslint-plugin-perfectionist/configs/recommended-natural' | |
import tailwind from 'eslint-plugin-tailwindcss' | |
import eslintPluginUnicorn from 'eslint-plugin-unicorn' | |
import withNuxt from './.nuxt/eslint.config.mjs' | |
export default withNuxt( | |
antfu( | |
{ formatters: true, stylistic: true }, |