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 ヶ月 前 | |
---|---|---|
SCRIPTS | 4 ヶ月 前 | |
app | 4 ヶ月 前 | |
docs | 4 ヶ月 前 | |
public | 4 ヶ月 前 | |
tailwindcss | 4 ヶ月 前 | |
tests | 4 ヶ月 前 | |
writable | 4 ヶ月 前 | |
.gitignore | 4 ヶ月 前 | |
.php-cs-fixer.dist.php | 4 ヶ月 前 | |
COPYING | 4 ヶ月 前 | |
README.md | 4 ヶ月 前 | |
builds | 4 ヶ月 前 | |
composer.json | 4 ヶ月 前 | |
composer.lock | 4 ヶ月 前 | |
env | 4 ヶ月 前 | |
package-lock.json | 4 ヶ月 前 | |
package.json | 4 ヶ月 前 | |
phpunit.xml.dist | 4 ヶ月 前 | |
preload.php | 4 ヶ月 前 | |
spark | 4 ヶ月 前 | |
tailwind.config.js | 4 ヶ月 前 |
Evaluación Técnica de Programación del Grupo Castores.
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.
El archivo SCRIPTS/inventario.sql
contiene el script para crear la base de datos de la aplicación.
php spark serve
Dependencias:
Instala las dependencias de desarrollo:
composer install
npm install
Ejecuta CodeIgniter Coding Standard:
composer run linter
Compila Tailwind CSS:
npm run tailwindcss
Ejecuta StandardJS:
npm run standard
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.