This file contains hidden or 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: '2' | |
| services: | |
| web: | |
| image: nginx:latest | |
| ports: | |
| - "80:80" | |
| volumes: | |
| - ./<path-to-folder/backend>:/code/Backend | |
| - ./<path-to-folde/frontend>:/code/Frontend |
This file contains hidden or 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
| // some stuff here | |
| export type FontSouce = Parameters<typeof Font.loadAsync>[0]; | |
| const usePromiseAll = ( | |
| promises: Promise<void | void[] | Asset[]>[], | |
| cb: () => void | |
| ) => | |
| useEffect(() => { | |
| (async () => { | |
| await Promise.all(promises); | |
| cb(); |
This file contains hidden or 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
| { | |
| "repositoryUrl": "git+ssh://***", | |
| "branches": [ | |
| { | |
| "name": "master", | |
| "prerelease": "true" | |
| }, | |
| { | |
| "name": "release", | |
| "prerelease": "false" |
This file contains hidden or 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
| #!/bin/bash | |
| # Function to display usage information | |
| usage() { | |
| echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]" | |
| exit 1 | |
| } | |
| # Check if at least one argument (input file) is provided | |
| if [ $# -lt 1 ]; then |
OlderNewer