Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shazron/test-api


https://github.com/shazron/test-api

Last synced: 26 days ago
JSON representation

Awesome Lists containing this project

README

        

# digital-downloads-app-upload-test

1. Install node.js 16 or greater:
2. Install dependencies: `npm install`
3. Run the test code with `ACCESS_TOKEN` in your environment variables (see below, or add it in a .env file, see .env.example)

## Linux / macOS

`ACCESS_TOKEN=your_access_token_here node index.js`

## CMD (Windows)

On Windows the environment variable is set using the set command.

`set ACCESS_TOKEN=your_access_token_here & node index.js`

## PowerShell (Windows)

In Powershell, it is a bit different.

`$env:ACCESS_TOKEN='your_access_token_here';node index.js`