This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
proxy: | |
image: traefik:latest | |
command: | |
- "--api.insecure=true" | |
- "--providers.docker=true" | |
- "--providers.docker.exposedbydefault=false" | |
# Endpoints setup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/react-native-track-player/android/build.gradle b/node_modules/react-native-track-player/android/build.gradle | |
index a241d94..48138f9 100644 | |
--- a/node_modules/react-native-track-player/android/build.gradle | |
+++ b/node_modules/react-native-track-player/android/build.gradle | |
@@ -60,7 +60,7 @@ dependencies { | |
//noinspection GradleDynamicVersion | |
implementation 'com.facebook.react:react-native:+' | |
- def exoPlayerVersion = safeExtGet("exoPlayerVersion", '2.11.4') | |
+ def exoPlayerVersion = safeExtGet("exoPlayerVersion", '2.13.2') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const N = 500; | |
const getAll = async (prefix: string): Promise<T[]> => { | |
const allData: T[] = []; | |
let dataLen = 0; | |
let i = 1; | |
do { | |
const { data, error } = await supabase | |
.from('table') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/node_modules/@react-native-community/blur/android/build.gradle b/node_modules/@react-native-community/blur/android/build.gradle | |
index 8177235..5d310b9 100644 | |
--- a/node_modules/@react-native-community/blur/android/build.gradle | |
+++ b/node_modules/@react-native-community/blur/android/build.gradle | |
@@ -9,7 +9,6 @@ buildscript { | |
if (project == rootProject) { | |
repositories { | |
google() | |
- jcenter() | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
proxy: | |
image: traefik:v2.3 | |
container_name: server_proxy | |
command: | |
- "--api.insecure=true" | |
- "--providers.docker=true" | |
- "--providers.docker.exposedbydefault=false" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The basic idea here is to have the whole content hidden so the navigation bar will become large | |
and once our screen triggers componentDidAppear() (it didn't work with useEffect()), | |
we show the content and the navigation bar remains large and acts as expected. | |
*/ | |
import { useNavigationComponentDidAppear } from 'react-native-navigation-hooks/dist/hooks'; | |
const SomeScreen: NavigationFunctionComponent = ({ | |
componentId, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
reverse-proxy: | |
image: traefik:v2.0 | |
restart: always | |
container_name: traefik | |
command: | |
- "--api=true" | |
- "--providers.docker=true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DOMAIN_NAME=good-news.<your-domain.com> | |
# get from DO dashboard: Manage -> API -> Personal tokens | |
DO_AUTH_TOKEN=<YOUR_DO_AUTH_TOKEN> | |
API_GIN_DEBUG_MODE=false | |
# change these values to what you desire | |
MONGO_ADMIN=GGCTeamBatr | |
MONGO_ADMIN_PSWD=MySuperSecretPassword | |
MONGO_DB_USER=suuuper_user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
reverse-proxy: | |
image: traefik:v2.0 | |
container_name: traefik | |
command: --api --providers.docker | |
ports: | |
- "6969:80" | |
- "6970:8080" |
NewerOlder