Skip to content

Commit

Permalink
Updated README.md, Added database
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Olvera committed Oct 19, 2018
1 parent 80b6e9c commit 9c03419
Show file tree
Hide file tree
Showing 4 changed files with 653 additions and 4 deletions.
44 changes: 42 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,44 @@
# Minibool
Proyecto Minibool

[Versiones](https://github.com/michelolvera/Minibool/releases)
This project is a didactic software that allows to read boolean expressions in different formats (truth tables, Karnaugh maps, Boolean functions expressed in mini-terms, maxi-terms or non-standard Boolean expressions), simplifies these expressions, contributing to improve performance of the students who take careers in the area of computing in various institutions.

Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México.

## Try it

If you want to try the project you can do it from the official website of the systems department of the Instituto Tecnológico de Morelia, right [here](http://dsc.itmorelia.edu.mx/minibool).

### Supported languages:

- English - United States
- Español - México
- Français - France

*Help is requested to support more languages*.

## Test Locally

You'll need [XAMPP](https://www.apachefriends.org/) or install the following:

- MariaDB 10.1.36 or newer.
- Apache 2.4.34 or newer.
- PHP 5.6.38 or newer.
- Download source code [here](https://github.com/michelolvera/Minibool/releases).

After this create the minibool database and import the script called `minibool.sql`, and update the file `php/ManejoSQL.php` line 2 and 3 with your MariaDB username and password:

$sqlUser="root"; //Your User
$sqlPass=""; //Your Password

## Contribute
Feel free to report errors in the [issues section](https://github.com/michelolvera/Minibool/issues) with a detailed description on how to replicate the problem or send your corrections creating a Pull Request, will probably be accepted.

## Thanks to:
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free boolean algebra classes.
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico.
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater.

## Developers:
- @michelolvera (UI, UX, Quine-McCluskey, Petrick)
- @AlanCruzRV (UI, UX, DB, Security)
- @JorgeAr1 (UI, UX, Parser)
44 changes: 44 additions & 0 deletions README.md.backup
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Minibool

This project is a didactic software that allows to read boolean expressions in different formats (truth tables, Karnaugh maps, Boolean functions expressed in mini-terms, maxi-terms or non-standard Boolean expressions), simplifies these expressions, contributing to improve performance of the students who take careers in the area of computing in various institutions.

Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México.

## Try it

If you want to try the project you can do it from the official website of the systems department of the Instituto Tecnológico de Morelia, right [here](http://dsc.itmorelia.edu.mx/minibool).

### Supported languages:

- English - United States
- Español - México
- Français - France

*Help is requested to support more languages*.

## Test Locally

You'll need [XAMPP](https://www.apachefriends.org/) or install the following:

- MariaDB 10.1.36 or newer.
- Apache 2.4.34 or newer.
- PHP 5.6.38 or newer.
- Download source code [here](https://github.com/michelolvera/Minibool/releases).

After this create the minibool database and import the script called `minibool.sql`, and update the file `php/ManejoSQL.php` line 2 and 3 with your MariaDB username and password:

$sqlUser="root"; //Your User
$sqlPass=""; //Your Password

## Contribute
Feel free to report errors in the [issues section](https://github.com/michelolvera/Minibool/issues) with a detailed description on how to replicate the problem or send your corrections creating a Pull Request, will probably be accepted.

## Thanks to:
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free Boolean algebra classes.
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico.
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater.

## Developers:
- @michelolvera (UI, UX, Quine-McCluskey, Petrick)
- @AlanCruzRV (UI, UX, DB, Security)
- @JorgeAr1 (UI, UX, Parser)
Loading

0 comments on commit 9c03419

Please sign in to comment.