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
| { | |
| "scripts": { | |
| "start": "expo start --dev-client", | |
| "android": "expo run:android", | |
| "ios": "expo run:ios", | |
| "eas-build-pre-install": "npm config set legacy-peer-deps true", | |
| "eas:prebuild:clean": "npx expo prebuild --clean", | |
| "eas:and:dev": "eas build -p android -e development --local", | |
| "eas:and:preview": "eas build -p android -e preview --local", | |
| "eas:and:prod": "eas build -p android -e production --local", |
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: "3.7" | |
| services: | |
| db: | |
| image: mariadb:latest | |
| restart: always | |
| volumes: | |
| - volDb:/var/lib/mysql | |
| environment: | |
| MYSQL_ROOT_PASSWORD: 1234 |