Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 1.44 KB

README.md

File metadata and controls

37 lines (22 loc) · 1.44 KB

Getting Started

If you're just getting started with Flatfile, you're in the right place.

This code supports Flatfile's Beginner Tutorial, a four-step walkthrough that helps you create your first data import experience.

  1. Configure your data destination: Meet the Workbook
  2. Import and extract your data: Setup a listener
  3. Process your data: Transform and validate data
  4. Export your data: Configure a submit Action

Setup your environment variables

Before you begin, set up your environment variables. Rename .env.example to .env and update it with your credentials.

Your .env file should look similar to this:

FLATFILE_ENVIRONMENT_ID=us_env_1234
FLATFILE_API_KEY=sk_1234

Stepping through the tutorial

After you set up your environment variables, the first step of the tutorial, creating your first Workbook, can be done by running npm run create-workbook.

The remainder of the tutorial can be stepped through in either typescript or javascript.

If using javascript, run npm run dev:js to start a local listener.

If using typescript, run npm run dev:ts to start a local listener.

Guidance and context for these steps can be found in our Beginner Tutorial Documentation.

See all code examples

To see all of the code examples from the docs, head to the flatfile-docs-kitchen-sink repo.