Information Portal Development

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.

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

Information Portal Development

An information portal is a content platform aggregating materials on a specific topic: articles, directories, ratings, catalogs. Differs from news portal by lower update frequency and emphasis on evergreen content. Typical examples: industry portals, city/region guides, encyclopedic resources.

Information portal structure

Section Content type
Articles and analysis Long-form, SEO-oriented
Directory Structured object cards
Ratings and collections Thematic lists with descriptions
Section news Short news items
Database Searchable catalog (companies, products, places)

Architecture for multi-type content

Different content types have different field structures. Solutions:

Single-table inheritance (STI): one content_items table with type field and JSON column for specific fields. Simple but hard to index.

Polymorphic tables: separate tables for each content type with contentable_type / contentable_id link. Flexible but complex queries.

Headless CMS (Strapi, Contentful): content types with custom fields via UI. Suits many editors when developer shouldn't add new types.

Directory with geolocation

For portal with place catalog (restaurants, organizations, tourist sites) geolocation functionality is needed:

  • PostgreSQL extension PostGIS for storing coordinates and geoqueries
  • Search "near me" within N km radius
  • Map with marker clustering (Leaflet.js or Mapbox GL)
-- Find restaurants within 2 km
SELECT name, ST_Distance(
  location::geography,
  ST_MakePoint(37.6176, 55.7558)::geography
) AS distance_m
FROM restaurants
WHERE ST_DWithin(
  location::geography,
  ST_MakePoint(37.6176, 55.7558)::geography,
  2000
)
ORDER BY distance_m;

SEO as traffic foundation

Information portal lives on organic traffic. Requirements:

  • SSR or SSG (not CSR) — each page renders as HTML
  • Breadcrumbs with BreadcrumbList JSON-LD
  • HowTo and FAQ schema for information articles
  • Internal linking by topic: 3–5 related material links at article end
  • Real-time sitemap updates

User-generated content

For portals with UGC (ratings, reviews, additions):

  • Moderation (pre-moderation or post-moderation)
  • Spam filters (akismet API or self-hosted model)
  • Author reputation system

Timeline

MVP (articles, sections, search, SEO, RSS): 6–8 weeks. Portal with directory, geosearch, user reviews and analytics: 3–5 months.