{"id":31554691,"url":"https://github.com/jirzykerklaan/tep-cms","last_synced_at":"2026-04-12T02:36:03.778Z","repository":{"id":306819834,"uuid":"1026399327","full_name":"JirzyKerklaan/tep-cms","owner":"JirzyKerklaan","description":"A fast, file-based content management system that's perfect for modern, static and dynamic websites.","archived":false,"fork":false,"pushed_at":"2025-09-12T10:34:59.000Z","size":185,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-12T11:43:24.472Z","etag":null,"topics":["cms","content-management-system","ejs","file-based-cms","flat-file","json","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JirzyKerklaan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-07-25T20:23:50.000Z","updated_at":"2025-09-12T10:35:02.000Z","dependencies_parsed_at":"2025-07-27T21:24:52.053Z","dependency_job_id":"a0201936-24cf-49fb-996a-b84760380bf5","html_url":"https://github.com/JirzyKerklaan/tep-cms","commit_stats":null,"previous_names":["jirzykerklaan/tep-cms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JirzyKerklaan/tep-cms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JirzyKerklaan%2Ftep-cms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JirzyKerklaan%2Ftep-cms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JirzyKerklaan%2Ftep-cms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JirzyKerklaan%2Ftep-cms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JirzyKerklaan","download_url":"https://codeload.github.com/JirzyKerklaan/tep-cms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JirzyKerklaan%2Ftep-cms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278373517,"owners_count":25976150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cms","content-management-system","ejs","file-based-cms","flat-file","json","typescript"],"created_at":"2025-10-04T21:12:38.323Z","updated_at":"2026-04-12T02:36:03.760Z","avatar_url":"https://github.com/JirzyKerklaan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg width=\"200\" draggable=\"false\" src=\"./.github/docs/tep-cms.png\" alt=\"TEP CMS Logo\"/\u003e\n\u003c/p\u003e\n\n\n## 📚 Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [File Structure](#file-structure)\n- [Developer tips](#tips)\n\n[//]: # (- [Suggestions or Issues]\u0026#40;#contribute\u0026#41;)\n\n\n\u003ch2 id=\"features\"\u003e📦 Features\u003c/h2\u003e\n\n- ⚡ **File-based Content** – no DB needed.\n- 🧱 **Reusable Blocks** – with a modular `page_builder`.\n- 📁 **Organized Assets** – with a modern media library.\n- 🎨 **SCSS Styling** – modular, maintainable styles.\n- 🧪 **Easy Local Dev** – run with nearly zero setup.\n- 🚀 **Lightweight \u0026 Fast** – powered by Express \u0026 EJS.\n- 👥 **Multiple users** – allows the user to have multiple accounts.\n- 🕙 **Content scheduler** - plan when a post should be released\n- 🔖 **Content versioning** - configurable content versioning of entries\n- 🧩 **Headless mode** - use headless mode to implement TEP anywhere\n- 🔌 **Plugins** - easy management for a variety of plugins\n\n\u003ch2 id=\"installation\"\u003e🛠 Installation\u003c/h2\u003e\n\n1. Clone the repo and install dependencies:\n   ```bash\n   npm install\n    ```\n2. Copy the example config and customize it:\n    ```bash\n    cp config.example.ts config.ts\n    ```\n3. Run the development server\n    ```bash\n    npm run dev\n    ```\n4. Build for production\n    ```bash\n    npm run prod\n    ```\n\n\n\u003ch2 id=\"file-structure\"\u003eFile Structure\u003c/h2\u003e\n\n```bash\ntep-cms/\n├── content/\n│   ├── collections/      # All collections (pages, blogs etc.)\n│   ├── globals/          # Global site settings (header, footer settings etc.)\n│   ├── navigation/       # Navigation menu's\n│   └── schemas/          # Collections \u0026 globals schemas\n├── core/\n│   ├── interfaces/       # Interface exports\n│   ├── manager/\n│   │   ├── controllers/  # Manager route controllers.\n│   │   ├── helpers/      # Manager route helpers.\n│   │   └── services/     # Manager controller services.\n│   ├── middlewares/      # Global middleware\n│   ├── services/         # Route services\n│   └── validation/       # Validation system\n├── public/\n│   ├── assets/\n│   │   ├── base/         # Static theme images, icons, etc.\n│   │   └── uploads/      # Uploaded images, icons, etc.\n│   └── css/              # Compiled SCSS styling\n├── src/\n│   ├── blocks/           # Page_builder blocks \u0026 components\n│   ├── plugins/          # Installed plugins\n│   ├── requests/         # Request validators\n│   ├── routes/           # System routing\n│   ├── templates/\n│   │   ├── layouts/      # Page layouts\n│   │   ├── manager/      # /manager views\n│   │   └── views/        # Public views\n│   ├── types/            # Package definitions\n│   └── utils/            # Utility functions\n├── styles/               # SCSS styling\n├ config.ts\n└ server.ts\n```\n\n\u003ch2 id=\"tips\"\u003e🧪 Development Tips\u003c/h2\u003e\n\n- Use version control to track content\n- Turn off caching during the development fase\n- [error codes](.github/docs/error-codes.md)\n\n[//]: # (\u003ch2 id=\"contribute\"\u003e🙋 Suggestions or Issues\u003c/h2\u003e)\n\n[//]: # ()\n[//]: # (If you find bugs or have suggestions, feel free to open an [issue]\u0026#40;https://github.com/JirzyKerklaan/tep-cms/issues/new\u0026#41;.)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjirzykerklaan%2Ftep-cms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjirzykerklaan%2Ftep-cms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjirzykerklaan%2Ftep-cms/lists"}