Skip to content
Merged
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
22 changes: 5 additions & 17 deletions apps/download-blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,32 +52,20 @@ const BLOB_NAME = "your-blob-name.ext" // Change this to your desired blob name

## Usage

### Development Mode

Run the example in development mode with automatic rebuilding:
Run the example using the start script:

```bash
npm run dev
npm start
```

### Production Mode

1. Build the app:
```bash
npm run build
```

2. Run the built app:
```bash
npm start
```
This will execute the TypeScript file directly using tsx with the environment variables from your `.env` file.

### Direct Execution
### Alternative Execution

You can also run the TypeScript file directly using tsx:

```bash
npx tsx src/index.ts
npx tsx --env-file=.env src/index.ts
```

## How It Works
Expand Down