Skip to content

Commit de5972e

Browse files
authored
Add mobile upload example (#13799)
1 parent 77d7064 commit de5972e

21 files changed

Lines changed: 11185 additions & 0 deletions
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Same API key as server — so OAuth connects the user to your developer app
2+
EXPO_PUBLIC_AUDIUS_API_KEY=
3+
4+
# URL of the upload server (run server first).
5+
# iOS simulator: http://localhost:3003
6+
# Android emulator: http://10.0.2.2:3003
7+
# Physical device: use your computer's LAN IP, e.g. http://192.168.4.107:3003
8+
EXPO_PUBLIC_WRITE_SERVER_URL=http://localhost:3003
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
> Why do I have a folder named ".expo" in my project?
2+
3+
The ".expo" folder is created when an Expo project is started using "expo start" command.
4+
5+
> What do the files contain?
6+
7+
- "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.
8+
- "settings.json": contains the server configuration that is used to serve the application manifest.
9+
10+
> Should I commit the ".expo" folder?
11+
12+
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.
13+
Upon project creation, the ".expo" folder is already added to your ".gitignore" file.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"devices": []
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.env
2+
.env.local
3+
node_modules

0 commit comments

Comments
 (0)