Skip to content

bhctest123/tableflow

 
 

Repository files navigation

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
cp .env.example .env
docker-compose up -d

Then open http:https://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 wget -O /usr/local/bin/docker-compose https://github.com/docker/compose/releases/download/v2.19.1/docker-compose-$(uname -s)-$(uname -m) && \
sudo mv /usr/local/bin/docker-compose /usr/bin/docker-compose && \
sudo chmod +x /usr/bin/docker-compose && \
mkdir tableflow && cd tableflow && \
wget https://raw.githubusercontent.com/tableflowhq/tableflow/main/{.env.example,docker-compose.yml,docker-compose.base.yml} && \
mv .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 [email protected]

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 45.7%
  • Go 37.3%
  • SCSS 16.1%
  • CSS 0.3%
  • JavaScript 0.3%
  • HTML 0.2%
  • Dockerfile 0.1%