Minor documentation updates

This commit is contained in:
Nick Yeoman 2025-05-23 15:02:17 -07:00
parent 5d2281b713
commit bedf615ad3
2 changed files with 15 additions and 14 deletions

View File

@ -11,28 +11,17 @@ Master Repo: https://git.4lt.ca/4lt/novaconium
## Getting Started
### Installation (docker)
Installation is using the composer docker container. If you are using native composer, replace the docker line with: ```composer require 4lt/novaconium```.
```bash
mkdir project_name;
cd project_name;
composer require 4lt/novaconium
docker run --rm --interactive --tty --volume $PWD:/app composer:latest require 4lt/novaconium
cp -R vendor/4lt/novaconium/defaults/App/ .
cp -R vendor/4lt/novaconium/defaults/public/ .
```
### Install Composer on Debian
```bash
sudo nala install curl php-cli php-mbstring git unzip
curl -sS https://getcomposer.org/installer -o composer-setup.php
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
rm composer-setup.php
```
## APP Database config
Open the /App/config.php file and change the database section to match the above:
@ -49,4 +38,5 @@ Open the /App/config.php file and change the database section to match the above
## Documentation
* [Docker Setup](https://git.4lt.ca/4lt/novaconium)
* [Novaconiumm Official Repo](https://git.4lt.ca/4lt/novaconium)
* [CORXN Apache and PHP Container for Novaconium](https://git.4lt.ca/4lt/CORXN)

View File

@ -0,0 +1,11 @@
# Install Composer natively on Debian
```bash
sudo nala install curl php-cli php-mbstring git unzip
curl -sS https://getcomposer.org/installer -o composer-setup.php
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
rm composer-setup.php
```
# composer require 4lt/novaconium