Compare commits

..

No commits in common. "e8b82386001e5983cea21ec4297d107127d45534" and "b67ce8f2d085bbb4d0ed993ac0e5d45e5482f434" have entirely different histories.

3 changed files with 4 additions and 5 deletions

View file

@ -1,6 +1,3 @@
## DISCLAIMER
This is the documentation of the original Script I wrote for Laravel. Many of the things here do apply to the setup with codeigniter as well, definitely not all though. This documentation will be adapted as soon as development slows down as the name of the scripts and their content are still subject to change.
## Idea ## Idea
This Project aims to simplify setting up a laravel project in a local development environment for new and experienced developers. This Project aims to simplify setting up a laravel project in a local development environment for new and experienced developers.

View file

@ -1,4 +1,6 @@
FROM composer AS composer FROM composer AS composer
FROM php:8.2-cli FROM php:8.2-cli
COPY --from=composer /usr/bin/composer /usr/bin/composer COPY --from=composer /usr/bin/composer /usr/bin/composer
@ -18,7 +20,7 @@ RUN apt-get update \
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y "$(cat add_pkgs | head -n 1)" || true \ && apt-get install -y "$(cat add_pkgs | head -n 1)" || true \
&& docker-php-ext-install "$(cat install_ext | head -n 1)" || true \ && docker-php-ext-install "$(cat install_ext | head -n 1)" || true \
&& docker-php-ext-enable "$(cat enable_ext | head -n 1)" || true \ && docker-php-ext-enable "$(cat enable_ext | head -n 0)" || true \
&& apt-get autoclean -y \ && apt-get autoclean -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View file

@ -2,7 +2,7 @@
if [[ "$(basename $(pwd))" == "igniter" ]]; then if [[ "$(basename $(pwd))" == "igniter" ]]; then
cd .. cd ..
./spark-exec "$@" ./art "$@"
cd igniter cd igniter
exit exit
fi fi