Skip to content

AZIRARM/nodify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

304 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Creative Commons BY-NC 4.0 License Java CI with Maven GitHub Repo stars GitHub forks Docker Pulls

πŸš€ Nodify: The Most Powerful Open-Source Headless CMS as a True CaaS

Delivering seamless content experiences across all channels β€” natively multilingual, any content, any channel.

πŸ“¦ Official Repositories

Repository Description
nodify Core Nodify Headless CMS project
nodify-clients Official clients for Java, Python, and Node.js
nodify-templates Ready-to-use templates for Nodify Studio
nodify-plugins Extensible plugins for Nodify
nodify-php-client PHP client for Nodify API

πŸš€ Demo

You can explore a live demo of Nodify Headless CMS here:
πŸ”— Nodify Demo

Credentials:

  • Username: admin
  • Password: Admin13579++

Availability:
The demo server is accessible daily from 10:00 AM to 12:00 AM (UTC+1).

⚠️ This is a shared demo environment. Data may be reset at any time.

πŸ“š Quick Links

✨ Why Nodify?

Feature Description
🌍 Native Multilingual Any content, any language, any channel
πŸ“¦ Official SDKs Python, PHP, Java/Kotlin, Node.js
πŸ”Œ Extensible Plugins, webhooks, and custom APIs
🐳 Docker-ready One-command deployment
🎨 Ready Templates Tech Forum, News, E-commerce, Stories

Understanding Headless CMS

  • Separates the front-end (presentation layer) from the back-end (content management)
  • Delivers content through APIs
  • Highly customizable and adaptable

Why Choose Nodify?

  • Multilingual: Create and manage content in multiple languages.
  • Multichannel: Deliver content to any device or platform.
  • Highly customizable: Tailor the CMS to your specific needs.
  • Scalable: Easily handle growing content volumes.
  • Developer-friendly: Robust APIs and integrations.

Deliver Content Anywhere, Anytime

  • Websites
  • Mobile apps
  • IoT devices
  • Social media
  • Voice assistants

Flexibility and Customization

  • Customizable content models: Define your own content structures.
  • Flexible APIs: Integrate with your existing tech stack.
  • Extensible with plugins: Add new features as needed.

Create Global Content Experiences

  • Translate content easily: Manage multiple language versions.
  • Regionalize content: Target specific audiences.
  • Handle complex multilingual requirements: Support various writing systems and dialects.

Empower Your Development Team

  • Robust APIs: RESTful APIs for seamless integration.
  • Webhooks: Trigger actions based on events.
  • Version control: Track changes and collaborate effectively.

🎯 Ready-to-Use Templates

Nodify comes with pre-built templates to accelerate your development:

  • Tech Forum Template - Complete developer community forum
  • Tiny Tales Stories Template - AI-powered children's stories generator
  • News Template - Modern news publishing platform
  • E-commerce Template - Product catalog and shopping experience

Explore all templates in the nodify-templates repository.

πŸ”Œ Extend with Plugins

Enhance your Nodify experience with official plugins:

  • SEO Optimizer - Automatic meta tags and sitemap generation
  • Image Optimizer - On-the-fly image resizing and optimization
  • Webhook Manager - Advanced webhook configuration and monitoring
  • Analytics Dashboard - Built-in content performance analytics

Browse all plugins in the nodify-plugins repository.

πŸ’» Client Libraries

Integrate Nodify with your tech stack using official clients:

Language Repository
Java nodify-clients/java
Python nodify-clients/python
Node.js nodify-clients/nodejs
PHP nodify-php-client

πŸ“Š GitHub Stats

GitHub release GitHub last commit GitHub contributors

πŸ“₯ Installation

Quick Start with Docker Compose

Clone the repository and run Nodify with all dependencies (MongoDB and Redis included):

git clone https://github.com/AZIRARM/nodify.git
cd nodify
docker compose up -d

Nodify will be available at:

Docker Compose Configuration

Create a docker-compose.yml file:

services:
  mongodb:
    image: mongo:latest
    container_name: nodify-mongodb
    volumes:
      - mongodb_data:/data/db
    ports:
      - "27017:27017"
    restart: unless-stopped

  redis:
    image: redis:latest
    container_name: nodify-redis
    volumes:
      - redis_data:/data
    ports:
      - "6379:6379"
    restart: unless-stopped

  nodify-core:
    image: azirar/nodify-core:latest
    container_name: nodify-core
    environment:
      MONGO_URL: "mongodb://mongodb:27017/nodify"
      ADMIN_PWD: Admin13579++
      API_URL: "http://nodify-api:1080"
      TZ: "${TZ:-Europe/Paris}"
      REDIS_URL: "redis://redis:6379"
      JAVA_OPTS: "-Xmx768m -Xms384m"
    ports:
      - "7804:8080"
    depends_on:
      - mongodb
      - redis
    restart: unless-stopped

  nodify-api:
    image: azirar/nodify-api:latest
    container_name: nodify-api
    environment:
      MONGO_URL: "mongodb://mongodb:27017/nodify"
      TZ: "${TZ:-Europe/Paris}"
      REDIS_URL: "redis://redis:6379"
      JAVA_OPTS: "-Xmx512m -Xms256m"
    ports:
      - "7805:1080"
    depends_on:
      - mongodb
      - redis
    restart: unless-stopped

  nodify-studio:
    image: azirar/nodify-studio:latest
    container_name: nodify-studio
    ports:
      - "7821:80"
    environment:
      CORE_URL: "http://nodify-core:8080"
      API_URL: "http://nodify-api:1080"
    depends_on:
      - nodify-core
      - nodify-api
    restart: unless-stopped

volumes:
  mongodb_data:
  redis_data:

Environment Variables

Variable Description Default
MONGO_URL MongoDB connection string mongodb://mongodb:27017/nodify
REDIS_URL Redis connection URL redis://redis:6379
ADMIN_PWD Admin password Admin13579++
API_URL Public API URL http://nodify-api:1080
CORE_URL Core service URL http://nodify-core:8080
JAVA_OPTS JVM options for Core and API See above

🀝 Contributing

We welcome contributions! Please check our contribution guidelines before submitting pull requests.

πŸ“„ License

Nodify is licensed under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0).

This project is licensed under the Creative Commons BY-NC 4.0 license.

You are free to:

  • Share β€” Copy and redistribute the software in any medium or format.
  • Adapt β€” Remix, transform, and build upon the software.

But under the following conditions:

  • No Commercial Use β€” You may not use this software for commercial purposes.
  • Attribution β€” You must give appropriate credit, provide a link to the license, and indicate if changes were made.

See the full license here: https://creativecommons.org/licenses/by-nc/4.0/

🌟 Support

Made with ❀️ by the Nodify Community

Packages

 
 
 

Contributors