Skip to content

The unified repository containing the Neos core packages, used for Neos development.

License

Notifications You must be signed in to change notification settings

neos/neos-development-collection

Folders and files

NameName
Last commit message
Last commit date
Nov 7, 2024
Nov 25, 2024
Nov 25, 2024
Nov 27, 2024
Nov 27, 2024
Nov 20, 2024
Nov 19, 2024
Oct 23, 2024
Nov 8, 2024
Nov 14, 2024
Nov 27, 2024
Nov 24, 2024
Nov 27, 2024
Feb 2, 2024
Mar 11, 2024
Nov 8, 2024
Nov 11, 2024
Sep 6, 2024
Nov 25, 2024
Oct 8, 2024
Jul 16, 2024
Oct 8, 2024
Oct 8, 2024
Oct 8, 2024
Oct 8, 2024
Oct 8, 2024
Oct 8, 2024
Jun 14, 2024
Nov 10, 2024
Nov 11, 2024
Aug 28, 2022
Nov 19, 2024
Oct 26, 2022
Oct 31, 2021
Jan 27, 2017
Apr 6, 2021
Sep 28, 2023
May 16, 2023
Oct 25, 2022
Jun 13, 2024
Oct 6, 2015
Nov 10, 2024
Oct 9, 2019
Nov 20, 2024
Mar 15, 2024
Nov 27, 2024
Feb 2, 2024
Oct 15, 2024

Repository files navigation

Code Climate StyleCI Latest Stable Version License Documentation Slack Discussion Forum Issues Translation Twitter

Neos development collection

This repository is a collection of packages for the Neos content application platform (learn more on https://www.neos.io/). The repository is used for development and all pull requests should go into it.

Installation and Setup

If you want to install Neos, please have a look at the installation & setup documentation: https://docs.neos.io/guide/installation-development-setup

For (specific) documentation on Neos 9, read on below...

Contributing

If you want to contribute to Neos and want to set up a development environment, then please read the instructions in CONTRIBUTING.md

For (specific) documentation on Neos 9, read on below...

Neos 9 and the Event-Sourced Content Repository (ES CR)

Prerequisites

  • You need PHP 8.2 installed.
  • Please be sure to run off the Neos development distribution in branch 9.0, to avoid dependency issues.

Setup

Follow the usual configuration steps (as for Neos 8) to install Composer dependencies and configure the database connection in Settings.yaml Then:

  1. Run Doctrine Migrations:

    ./flow doctrine:migrate
    FLOW_CONTEXT=Testing/Postgres ./flow doctrine:migrate
  2. Setup the Content Repository

    ./flow cr:setup

Site Setup

You can chose from one of the following options:

Creating a new Site

./flow site:create neosdemo Neos.Demo Neos.Demo:Document.Homepage

Migrating an existing (Neos < 9.0) Site

# the following config points to a Neos 8.0 database (adjust to your needs)
./flow site:exportLegacyData --path ./migratedContent --config '{"dbal": {"dbname": "neos80"}, "resourcesPath": "/path/to/neos-8.0/Data/Persistent/Resources"}'
# import the migrated data
./flow site:importAll --path ./migratedContent

Importing an existing (Neos >= 9.0) Site from an Export

./flow site:importAll --package-key Neos.Demo

Running Neos

./flow server:run