From 533c8888b106120f366c1b878a0d2dc1707e82be Mon Sep 17 00:00:00 2001 From: zeyadomran Date: Tue, 1 Feb 2022 18:23:14 -0700 Subject: [PATCH] . --- mobile/.expo/README.md | 17 +++++++++++++++++ mobile/.expo/packager-info.json | 10 ++++++++++ mobile/.expo/settings.json | 9 +++++++++ 3 files changed, 36 insertions(+) create mode 100644 mobile/.expo/README.md create mode 100644 mobile/.expo/packager-info.json create mode 100644 mobile/.expo/settings.json diff --git a/mobile/.expo/README.md b/mobile/.expo/README.md new file mode 100644 index 0000000..d8971e4 --- /dev/null +++ b/mobile/.expo/README.md @@ -0,0 +1,17 @@ +> Why do I have a folder named ".expo" in my project? + +The ".expo" folder is created when an Expo project is started using "expo start" command. + +> What does the "packager-info.json" file contain? + +The "packager-info.json" file contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator. + +> What does the "settings.json" file contain? + +The "settings.json" file contains the server configuration that is used to serve the application manifest. + +> Should I commit the ".expo" folder? + +No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine. + +Upon project creation, the ".expo" folder is already added to your ".gitignore" file. diff --git a/mobile/.expo/packager-info.json b/mobile/.expo/packager-info.json new file mode 100644 index 0000000..f46dc50 --- /dev/null +++ b/mobile/.expo/packager-info.json @@ -0,0 +1,10 @@ +{ + "devToolsPort": 19002, + "expoServerPort": null, + "packagerPort": null, + "packagerPid": null, + "expoServerNgrokUrl": null, + "packagerNgrokUrl": null, + "ngrokPid": null, + "webpackServerPort": null +} diff --git a/mobile/.expo/settings.json b/mobile/.expo/settings.json new file mode 100644 index 0000000..a482d3a --- /dev/null +++ b/mobile/.expo/settings.json @@ -0,0 +1,9 @@ +{ + "hostType": "lan", + "lanType": "ip", + "dev": true, + "minify": false, + "urlRandomness": null, + "https": false, + "scheme": null +}