Evaluación Técnica de Programación del Grupo Castores.

Ricardo García Jiménez 1dd5b5813a docs: Agrega documento del formulario de la evaluación técnica 4 months ago
SCRIPTS 33e037eb0c feat: Agrega script de los ejercicios del sistema de ventas 4 months ago
app a59d902299 fix: Muestra mensaje de validación del lado del frontend para restar la cantidad de inventario como almacenista 4 months ago
docs 1dd5b5813a docs: Agrega documento del formulario de la evaluación técnica 4 months ago
public 341981c586 feat: Valida los campos de filtrado de movimientos 4 months ago
tailwindcss 8c4de0e477 feat: Inicializa el proyecto 4 months ago
tests 8c4de0e477 feat: Inicializa el proyecto 4 months ago
writable 8c4de0e477 feat: Inicializa el proyecto 4 months ago
.gitignore 8c4de0e477 feat: Inicializa el proyecto 4 months ago
.php-cs-fixer.dist.php 8c4de0e477 feat: Inicializa el proyecto 4 months ago
COPYING 5cd4ad6f8d feat: Agrega archivo README.md y licencia de software 4 months ago
README.md ba585dec0d docs: Renombra el script del sistema de inventario database.sql a inventario.sql 4 months ago
builds 8c4de0e477 feat: Inicializa el proyecto 4 months ago
composer.json 8c4de0e477 feat: Inicializa el proyecto 4 months ago
composer.lock 8c4de0e477 feat: Inicializa el proyecto 4 months ago
env 8c4de0e477 feat: Inicializa el proyecto 4 months ago
package-lock.json 8c4de0e477 feat: Inicializa el proyecto 4 months ago
package.json 8c4de0e477 feat: Inicializa el proyecto 4 months ago
phpunit.xml.dist 8c4de0e477 feat: Inicializa el proyecto 4 months ago
preload.php 8c4de0e477 feat: Inicializa el proyecto 4 months ago
spark 8c4de0e477 feat: Inicializa el proyecto 4 months ago
tailwind.config.js 23dd9acbc0 feat: Agrega cell para mensajes de alerta 4 months ago

README.md

Sistema de inventario

Evaluación Técnica de Programación del Grupo Castores.

Dependencias

Instalación

Ingresa a la carpeta del proyecto:

cd inventario-castores

Instala las dependencias del proyecto:

composer install --no-dev

Copia el archivo env a .env para configurar la aplicación:

cp env .env

Edita el archivo de configuración .env y descomente cada opción requerida:

CI_ENVIRONMENT = development

database.default.hostname = localhost
database.default.database = inventario
database.default.username = root
database.default.password = root
database.default.DBDriver = MySQLi
database.default.DBPrefix =
database.default.port = 3306

Ajuste cada opción señalada en base a su configuración.

Base de datos

El archivo SCRIPTS/inventario.sql contiene el script para crear la base de datos de la aplicación.

Ejecución

php spark serve

Dependencias de desarrollo (opcional)

Dependencias:

Instala las dependencias de desarrollo:

composer install
npm install

Comandos de desarrollo

Ejecuta CodeIgniter Coding Standard:

composer run linter

Compila Tailwind CSS:

npm run tailwindcss

Ejecuta StandardJS:

npm run standard

Herramientas utilizadas

Licencia

Sistema de inventario -- Evaluación Técnica de Programación del Grupo Castores.

Copyright (C) 2024  Ricardo García Jiménez <ricardogj08@riseup.net>

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

========================================================================

The MIT License (MIT)

Copyright (c) 2014-2019 British Columbia Institute of Technology
Copyright (c) 2019-2024 CodeIgniter Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.