https://github.com/orioncms/cms
Juntos construimos un futuro digital sostenible.
https://github.com/orioncms/cms
cms cms-framework nestjs reactjs turborepo
Last synced: 2 months ago
JSON representation
Juntos construimos un futuro digital sostenible.
- Host: GitHub
- URL: https://github.com/orioncms/cms
- Owner: orioncms
- License: mit
- Created: 2024-03-12T15:55:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T17:12:01.000Z (over 1 year ago)
- Last Synced: 2025-06-04T07:53:49.876Z (about 1 year ago)
- Topics: cms, cms-framework, nestjs, reactjs, turborepo
- Language: CSS
- Homepage: https://orioncms.org
- Size: 641 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# OrionCMS - Installation Guide
Welcome to **OrionCMS**! Follow this guide to set up and run the project locally.
## Prerequisites
Before starting, make sure you have the following installed:
- **Node.js** (v18+ recommended)
- **pnpm** (Package manager) - Install it globally if not already:
```bash
npm install -g pnpm
```
- **MySQL** (or SQLite) database setup and ready.
## Installation Steps
1. **Clone the repository**:
```bash
git clone git@github.com:orioncms/cms.git
```
2. **Navigate to the project folder**:
```bash
cd cms
```
3. **Install dependencies**:
```bash
pnpm i
```
4. **Set up your database**:
- Ensure you have database credentials ready:
- **Host**
- **User**
- **Password**
- **Port**
- **Database name**
- The application expects a MySQL (or SQLite) database. Update your database details in the appropriate configuration file (`.env` or similar). If an `.env` file is not available, create one in the root of the project.
5. **Start the development server**:
```bash
pnpm dev
```
6. **Access the application**:
Open your browser and go to:
```
https://localhost:3000
```
## Notes
- Make sure the database server is running and accessible.
- Default development port: `3000`.
- If you encounter SSL issues with `https://localhost`, check your browser or consider using `http://localhost:3000`.
---
### Enjoy building with OrionCMS 🚀