https://github.com/javascript-pro/core
Judging from the past, we may safely infer that no one piece of software (sic) will transmit its unaltered likeness to a distant futurity. And of the software now being used very little will transmit ideas of any kind to a far distant futurity.
https://github.com/javascript-pro/core
darwinism
Last synced: 5 months ago
JSON representation
Judging from the past, we may safely infer that no one piece of software (sic) will transmit its unaltered likeness to a distant futurity. And of the software now being used very little will transmit ideas of any kind to a far distant futurity.
- Host: GitHub
- URL: https://github.com/javascript-pro/core
- Owner: javascript-pro
- Created: 2025-03-25T09:45:11.000Z (about 1 year ago)
- Default Branch: staging
- Last Pushed: 2025-10-04T10:48:45.000Z (7 months ago)
- Last Synced: 2025-10-04T12:27:33.142Z (7 months ago)
- Topics: darwinism
- Language: TypeScript
- Homepage: https://goldlabel.pro
- Size: 131 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Goldlabel Core

A Next.js application that serves as a public-facing content hub, showcasing static site generation from markdown files while providing an optional admin panel for content management. This repository contains the full codebase, ideal for learning, reference, or as a foundation for your own projects.
## 🚀 Quick Start
```bash
git clone https://github.com/javascript-pro/core.git
cd core
yarn install
```
## Setup Environment
Create a `.env.local` file in the root directory with this variable. When you enable various parts of the apps which require other vars, the app will let you know
```dotenv
NEXT_PUBLIC_APP_URL=http://localhost:3000
```
## Local Development
```bash
yarn dev
```
- Runs the app at [http://localhost:3000](http://localhost:3000).
- Firebase credentials and other API keys are loaded from `.env.local`.
## 🔑 Deployment
Goldlabel Core is optimized for [Vercel](https://vercel.com), but can be deployed to any static-friendly hosting platform.
## 💾 [Cartridges](https://github.com/javascript-pro/core/tree/staging/gl-core/cartridges)
- [DesignSystem](https://github.com/javascript-pro/core/tree/staging/gl-core/cartridges/DesignSystem)
- [Uberedux](https://github.com/javascript-pro/core/tree/staging/gl-core/cartridges/Uberedux)
- [Paywall](https://github.com/javascript-pro/core/tree/staging/gl-core/cartridges/Paywall)
## Tech
- Next.js with App Router: Modern routing and optimized builds.
- Markdown-based content: Pages and apps are generated from the `public/markdown` folder.
- Static site generation (SSG): Fast, SEO-friendly pages with minimal runtime dependencies.
- Admin section (optional): Role-based authentication and content management.
- Responsive UI: Built with MUI (Material UI) for clean, consistent design.
- Open design: Components and utilities are fully accessible for customization.