daq-tools / tableflow

The open source CSV importer

Home Page:https://tableflow.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TableFlow

The Open Source CSV Importer

TableFlow is an open source data import platform

  • Embeddable import iframe modal
  • No-code importer configuration
  • Smart column mapping
  • Frontend callbacks to retrieve data
  • API to retrieve data
  • Webhook notifications
  • Data validation (coming soon)

How it works

  1. Create an Importer and define the columns your users can import
  2. Embed the TableFlow Importer in your app
  3. Your users can upload CSV or Excel files and set the column mapping through the Importer modal
  4. Download the clean, mapped data from TableFlow via a callback, the API, or from the admin app

TableFlow Importer Modal

Get started

☁️ TableFlow Cloud

The quickest way to get started with TableFlow is signing up for free to TableFlow Cloud

👩‍💻 Self-hosted deploy (local)

You can run TableFlow locally with Docker:

git clone https://github.com/tableflowhq/tableflow.git
cd tableflow
docker-compose up -d

Then open http://localhost:3000 to access TableFlow.

🤖 Self-hosted deploy (AWS EC2)

Important notes:

  1. Make sure the server you use is only accessible within your VPC
  2. Make sure your local machine is able to connect to the server on ports 3000 (the web server)
  3. Update your network settings to allow port 3001 (the importer iframe) and 3003 (the API server) to be accessible from where your users will import data, most likely public
  4. Update TABLEFLOW_WEB_APP_URL and TABLEFLOW_WEB_IMPORTER_URL in your .env.example file with the correct URLs where you'll access the web applications from

One-line install script (for Amazon Linux):

sudo yum update -y && \
sudo yum install -y docker git && \
sudo service docker start && \
sudo usermod -a -G docker $USER && \
sudo curl -L "https://github.com/docker/compose/releases/download/v2.19.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && \
sudo mv /usr/local/bin/docker-compose /usr/bin/docker-compose && \
sudo chmod +x /usr/bin/docker-compose && \
git clone https://github.com/tableflowhq/tableflow.git && cd tableflow && \
cp .env.example .env && \
sg docker -c 'docker-compose up -d'

Get in touch

Let us know your feedback or feature requests! You can submit a GitHub issue, reach out over Slack, or email us at hey@tableflow.com

DB Webhooks

If you're looking to use DB Webhooks, we've moved the project into its own repository here!

About

The open source CSV importer

https://tableflow.com

License:Other


Languages

Language:Go 50.9%Language:TypeScript 41.1%Language:SCSS 6.6%Language:CSS 0.5%Language:JavaScript 0.5%Language:HTML 0.3%Language:Dockerfile 0.2%