Internal Tool on NocoDB (No-Code Database)

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Showing 1 of 1 servicesAll 2065 services
Internal Tool on NocoDB (No-Code Database)
Simple
from 1 business day to 3 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Developing Internal Tools with NocoDB (No-Code Database)

NocoDB transforms an existing relational database (PostgreSQL, MySQL, SQLite) into an Airtable-like interface. Key difference from Baserow—NocoDB connects to an already existing database and displays real tables, rather than creating a separate storage.

Key Advantages

  • Connects to existing PostgreSQL/MySQL—data stays there
  • Open-source (AGPL), self-hosted
  • Spreadsheet interface for non-technical staff over production data
  • REST and GraphQL API out of the box
  • Forms for data collection without code

Installation

# Docker
docker run -d \
  --name nocodb \
  -v nocodb_data:/usr/app/data \
  -p 8080:8080 \
  nocodb/nocodb:latest

# With external PostgreSQL connection
docker run -d \
  -e NC_DB="pg://host:port?u=user&p=password&d=database" \
  -p 8080:8080 \
  nocodb/nocodb:latest

Connection to Production PostgreSQL

After starting NocoDB → Add Connection → PostgreSQL:

Host: 10.0.1.50
Port: 5432
Database: app_production
User: nocodb_readonly
Password: ****
Schema: public

NocoDB automatically imports all schema tables. For tables with FK, relationships are displayed (Link to another record).

Important: create a separate readonly user for tables that shouldn't be edited:

-- View-only for most tables
GRANT SELECT ON ALL TABLES IN SCHEMA public TO nocodb_readonly;

-- Allow editing only for specific tables
GRANT SELECT, INSERT, UPDATE ON customer_notes TO nocodb_rw;
GRANT SELECT, UPDATE ON users TO nocodb_rw;

NocoDB REST API

# NocoDB automatically generates API for each table
# Swagger UI: http://localhost:8080/api/v1/meta/tables/TABLE_ID

# List records with filter
GET /api/v1/db/data/noco/{PROJECT_ID}/{TABLE_ID}?where=(status,eq,active)&limit=25&offset=0

# Create record
POST /api/v1/db/data/noco/{PROJECT_ID}/{TABLE_ID}
{"name": "John", "email": "[email protected]", "status": "new"}

# Bulk update
PATCH /api/v1/db/data/bulk/noco/{PROJECT_ID}/{TABLE_ID}
[{"id": 1, "status": "processed"}, {"id": 2, "status": "processed"}]

Forms for Data Collection

NocoDB allows creating a public form from any table—via link users fill the form, data is recorded in the table. Useful for:

  • Customer requests (external form → leads table)
  • Employee forms (reports, requests)
  • Feedback collection

Automation via Webhook

// NocoDB Webhook → your server on row change
app.post('/hooks/nocodb/leads', async (req, res) => {
  const { type, data } = req.body;

  if (type === 'records.after.insert') {
    const lead = data.insertedRows[0];
    // Create contact in CRM
    await crmApi.createContact({
      email: lead.Email,
      name: lead.Name,
      phone: lead.Phone
    });
    // Notify manager in Telegram
    await telegramBot.sendMessage(MANAGER_CHAT_ID,
      `New request from ${lead.Name} (${lead.Email})`
    );
  }
  res.sendStatus(200);
});

Timeline

Connection to existing database + permission setup + initial interfaces — 1–2 days.