We recommend to look at the Nuxt 3 documentation.
This project expects
node version 16.14.2
npm version 8.6.0
to install the npm version, run the following npm install [email protected] -g
npm install
For more info on the nuxt release candidates see https://github.com/nuxt/framework/releases
in VS Code, use the following plugin for formatting. Be sure to install the older version 0.33.10: https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar
cp .env.sample .env
cp .npmrc.sample .npmrc
You will need to update the newly created .npmrc file and add your own personal access token at the end of line 2. You can create one in github under settings -> developer settings -> personal access tokens
Start the development server on http://local.dev.nypr.digital:3000
npm run dev
To avoid a CORS error, be sure to replace localhost:3000
with local.dev.nypr.digital:3000
Build the application for production:
docker build -t radiolab-vue .
docker run -p 3000:3000 -e HOST=0.0.0.0 radiolab-vue -e API_URL=https://api.demo2.wnyc.net
Keyword search and archive filtering is driven by the Algolia search engine. Credentials for Algolia are in 1Password. Log in to the dashboard to view the indices (one for demo and one prod) as well as to retrieve the API keys, application ID and index name that will need to be set in the .env
file. There is only one set of API credentials for both demo and prod, so make sure the index name is set appropriately (radiolab and Radiolab Demo). The indexer fetches episode data from the Simplecast API and sends it to Algolia. There are two options, one to do an update of the 10 most recent episodes another to rebuild the index from scratch. The refresh of recent episode is available via URL at /api/update_index
and the full rebuild is available at /api/all_index
. The full rebuild is only necessary if the index is corrupted or if the index is being moved to a new Algolia account. The update index is run from Zapier and triggered to run by a change in the Simplecast RSS feed for Radiolab. A token is needed to trigger both the update and all index, this is also in 1Password.