docker run -d --name noco
-v "$(pwd)"/nocodb:/usr/app/data/
-p 8080:8080
nocodb/nocodb:latest
Docker with PG
docker run -d --name noco
-v "$(pwd)"/nocodb:/usr/app/data/
-p 8080:8080
# replace with your pg connection string
-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1"# replace with a random secret
-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010"
nocodb/nocodb:latest
Auto-upstall
Auto-upstall is a single command that sets up NocoDB on a server for production usage.
Behind the scenes it auto-generates docker-compose for you.
Evan You - Creator of Vue.js also tweeted about us! ππππ
Did we anticipate this coming ?
Surely not. And as like many of you tinkerers, we were curious-anxious going into launch day. However, we are totally overwhelmed by the response of community. And would love to share more on the product & the journey here in Dev.to
How it works
docker run -p 8080:8080 nocodb/nocodb
or
npx create-nocodb-app
NocoDB simply works by connecting to your existing databases and transforming them into a smart spreadsheet interface! This allows you to collaborate just like google/airtable spreadsheets with your teams. And we also allow programmatic access to theses spreadsheet with REST & GraphQL APIs!
NocoDB currently works with
MySQL
PostgreSQL
Microsoft SQL Server
SQLite
Amazon Aurora & MariaDB databases.
Also NocoDB's app store allows you to build business workflows on views with combination of Slack, Microsoft Teams, Discord, Twilio, Whatsapp, Email & any 3rd party APIs too. Plus NocoDB provides programmatic access to APIs so that you can build integrations with Zapier / Integromat and custom applications too.
FEATURES :
Rich Spreadsheet Interface :
β‘ Sort, search, filter, hide columns with ease
β‘ Create Views : Grid, Gallery, Kanban, Gantt, Form
β‘ Share Views : public & password protected
β‘ Personal & locked Views
β‘ Upload images to cells (Works with S3, Minio, GCP, Azure & many more)!!
β‘ A no-code REST APIs generator for any MySQL DB. ~4000+ Github Stars. This was a hobby project & had no GUI. π
β‘ A low-code REST-GraphQL APIs generator for any database with GUI. Used by 100s of companies. Including fortune 500s & publicly trading companies. π
The thing that surprised us the most was that even non-developers started using our API products & rooting for us. π π .. This made us to rethink & combine the power of our 2 API products then transform them into something better.
π― Why we building this ?
Most internet businesses equip themselves with either spreadsheet or a database to solve their business needs. Spreadsheets are used by a hundreds of millions humans collaboratively every single day. However, we are way off working at similar speeds on databases which are way more powerful tools when it comes to computing. Attempts to solve this with SaaS offerings has meant horrible access controls, vendor lockin, data lockin, abrupt price changes & most importantly a glass ceiling on what's possible in future.
β€οΈ Our Mission :
Our mission is to provide the most powerful no-code interface for databases which is open source to every single internet business in the world. This would not only democratise access to a powerful computing tool but also bring forth a billion+ people who will have radical tinkering-and-building abilities on internet.
π And.. There is.. One last thing.. this makes it insanely good :
NocoDB can be run from a single node.js file with just SIX lines of code in it! This minimalism means NocoDB runs even on the smallest of servers. Not just AWS, DigitalOcean, Heroku but also in A2Hosting & similar.
docker run -d --name noco
-v "$(pwd)"/nocodb:/usr/app/data/
-p 8080:8080
nocodb/nocodb:latest
Docker with PG
docker run -d --name noco
-v "$(pwd)"/nocodb:/usr/app/data/
-p 8080:8080
# replace with your pg connection string
-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1"# replace with a random secret
-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010"
nocodb/nocodb:latest
Auto-upstall
Auto-upstall is a single command that sets up NocoDB on a server for production usage.
Behind the scenes it auto-generates docker-compose for you.