Congreso Latinoamericano de Matemática edición 2021. Web en PHP con Slim Framework.
Go to file
2024-07-30 18:28:10 -03:00
api initial copy of clam2020 2021-05-13 13:04:00 -03:00
data se agrega noticia y edita pagina principal con enlace a YouTube de las grabaciones 2021-10-27 16:22:09 -03:00
db rework from legacy code on legacy container with php 5. Ahora si, todos los otros commits eran cualca, estaba mandando el stash a . y estaba un dir encima de la raiz del repo 2024-07-30 17:21:59 -03:00
logs initial copy of clam2020 2021-05-13 13:04:00 -03:00
public rework from legacy code on legacy container with php 5 2024-07-30 17:17:44 -03:00
src rework from legacy code on legacy container with php 5. Ahora si, todos los otros commits eran cualca, estaba mandando el stash a . y estaba un dir encima de la raiz del repo 2024-07-30 17:21:59 -03:00
templates se agrega noticia y edita pagina principal con enlace a YouTube de las grabaciones 2021-10-27 16:22:09 -03:00
tests/Functional initial copy of clam2020 2021-05-13 13:04:00 -03:00
.gitignore paltform_check error fuck 2024-07-30 17:57:50 -03:00
composer.json rework from legacy code on legacy container with php 5. Ahora si, todos los otros commits eran cualca, estaba mandando el stash a . y estaba un dir encima de la raiz del repo 2024-07-30 17:21:59 -03:00
composer.lock paltform_check error fuck 2024-07-30 17:57:50 -03:00
CONTRIBUTING.md initial copy of clam2020 2021-05-13 13:04:00 -03:00
nginx.template.conf fix nginx template conf for deploy, was wrongly named 2024-07-30 17:26:56 -03:00
participantes-clam2021.csv rework from legacy code on legacy container with php 5 2024-07-30 15:37:50 -03:00
phpunit.xml initial copy of clam2020 2021-05-13 13:04:00 -03:00
README.md initial copy of clam2020 2021-05-13 13:04:00 -03:00

Slim Framework 3 Skeleton Application

Use this skeleton application to quickly setup and start working on a new Slim Framework 3 application. This application uses the latest Slim 3 with the PHP-View template renderer. It also uses the Monolog logger.

This skeleton application was built for Composer. This makes setting up a new Slim Framework application quick and easy.

Install the Application

Run this command from the directory in which you want to install your new Slim Framework application.

php composer.phar create-project slim/slim-skeleton [my-app-name]

Replace [my-app-name] with the desired directory name for your new application. You'll want to:

  • Point your virtual host document root to your new application's public/ directory.
  • Ensure logs/ is web writeable.

To run the application in development, you can also run this command.

php composer.phar start

Run this command to run the test suite

php composer.phar test

That's it! Now go build something cool.