Don't require EVENTBRITE_OAUTH_TOKEN for local development
gsong opened this issue · 1 comments
gsong commented
EVENTBRITE_OAUTH_TOKEN
is required in order to successfully spin up the local development environment currently. We should avoid that requirement to:
- Reduce developer setup friction.
- Prevent distributing secrets unnecessarily.
Proposed Solution
Implement the following workflow:
isEventbriteClientInstantiated
? hasErrorFromEventRetrieval
? renderError()
: areThereEvents
? renderEvents()
: renderEmpty()
: renderNoTokenScreen();
Address #175