pdo
, yaml
, ctype
composer init --no-interaction --name="internal/lightna-project" --type="project"composer require lightna/packcomposer require --dev phpunit/phpunit
cp -r vendor/lightna/pack/entry/. .cp edition/main/sample.config.php edition/main/config.phpcp edition/main/sample.env.php edition/main/env.php
Edit config.php
and env.php
in the edition/main
folder,
following the comments to verify and complete the configuration.
Ensure that no ****
placeholders remain in the files after editing.
Add the generated assets folder (pub/lightna
) to the app root .gitignore
.
(Double-check your config.php
for the correct path.)
If needed on the project, add the following packages:
composer require lightna/session
- Lightna session supportcomposer require lightna/redis
- Redis storage supportcomposer require lightna/elasticsearch
- Elasticsearch support
Add newly installed packages to the enabled modules in edition/main/config.php
make buildmake schema.update
./cli index.update.all
* * * * * { cd [lightna_entry_path] && ./cli index.queue.watch; } 2>&1 >> [logs_path]/lightna-index.log
The index.queue.watch
command applies changes immediately and continues monitoring for new
changes until the end of the minute. This behavior can be adjusted via configuration.
Alternatively, you can use index.queue.process
if you need the indexer to process the queue
explicitly once per minute.
You are ready to compile, index and render (see Development docs).
For detailed instructions, see Setting Up Deployment.