Skip to content

Commit

Permalink
🔧 chore: Add .env.example file
Browse files Browse the repository at this point in the history
  • Loading branch information
honzabubenik committed Apr 15, 2024
1 parent 0995145 commit adb2ac3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ENV variables for examples
LOCALAZY_API_URL=https://api.localazy.com
LOCALAZY_API_AUTH_TOKEN=your-project-token
4 changes: 2 additions & 2 deletions tests/support/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ export const textToUint8Array = (text: string): Uint8Array => Buffer.from(text,

export const getApiClient = (): ApiClient =>
new ApiClient({
apiUrl: 'http://localhost:3000',
authToken: '17407780176791600210a5f64753637a263fd6e9cfa84f81a08748ede1c83de0b5320f4cc1761d55b4ae',
apiUrl: 'https://api.localazy.com',
authToken: 'project-token',
});

0 comments on commit adb2ac3

Please sign in to comment.