Skip to content

replygirl/fyi

Repository files navigation

fyi

Setup

  1. Create an Airtable base with the following tables:

    • intro
      • Text field (primary): text
      • URL field: url
    • roles
      • Text field (primary): role
      • Text field: project
      • URL field: projectUrl
      • Single select field: era

    Display order will be determined by Airtable's default Grid view

  2. Install dependencies:

    yarn
    
  3. Install Now globally:

    npm i -g now
    

Development

  1. Add your Airtable base's info to a .env file at the root directory:

    AIRTABLE_BASE_ID=<your airtable base id>
    AIRTABLE_API_KEY=<your airtable api key>
    
  2. Serve locally:

    now dev
    

    Vue's build server will tell you to use the wrong port. Once everything is running, scroll up a bit and look for this line:

    > Ready! Available at http://localhost:<port>
    

Deployment

  1. Add your Airtable base's info as Now Secrets:

    now secret add airtable-base-id <your airtable base id>
    now secret add airtable-api-key <your airtable api key>
    
  2. If not using automated deployment: Deploy:

    now
    

Optional: Adding analytics

  1. Create your Heap environment(s)

  2. Add a Heap environment's ID to a .env.build at the root directory:

    VUE_APP_HEAP_APP_ID=<your heap app id>
    
  3. Add your production Heap environment's ID as a Now Secret:

    now secret add vue-app-heap-app-id <your heap app id>