Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/mobile/examples/upload/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Same API key as server — so OAuth connects the user to your developer app
EXPO_PUBLIC_AUDIUS_API_KEY=

# URL of the upload server (run server first).
# iOS simulator: http://localhost:3003
# Android emulator: http://10.0.2.2:3003
# Physical device: use your computer's LAN IP, e.g. http://192.168.4.107:3003
EXPO_PUBLIC_WRITE_SERVER_URL=http://localhost:3003
13 changes: 13 additions & 0 deletions packages/mobile/examples/upload/.expo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
> 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 do the files contain?

- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds.
- "settings.json": 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.
3 changes: 3 additions & 0 deletions packages/mobile/examples/upload/.expo/devices.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"devices": []
}
3 changes: 3 additions & 0 deletions packages/mobile/examples/upload/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.env
.env.local
node_modules
Loading