Skip to content

Commit 9c03419

Browse files
author
Michel Olvera
committed
Updated README.md, Added database
1 parent 80b6e9c commit 9c03419

4 files changed

Lines changed: 653 additions & 4 deletions

File tree

README.md

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
11
# Minibool
2-
Proyecto Minibool
32

4-
[Versiones](https://github.com/michelolvera/Minibool/releases)
3+
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.
4+
5+
Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México.
6+
7+
## Try it
8+
9+
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).
10+
11+
### Supported languages:
12+
13+
- English - United States
14+
- Español - México
15+
- Français - France
16+
17+
*Help is requested to support more languages*.
18+
19+
## Test Locally
20+
21+
You'll need [XAMPP](https://www.apachefriends.org/) or install the following:
22+
23+
- MariaDB 10.1.36 or newer.
24+
- Apache 2.4.34 or newer.
25+
- PHP 5.6.38 or newer.
26+
- Download source code [here](https://github.com/michelolvera/Minibool/releases).
27+
28+
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:
29+
30+
$sqlUser="root"; //Your User
31+
$sqlPass=""; //Your Password
32+
33+
## Contribute
34+
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.
35+
36+
## Thanks to:
37+
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free boolean algebra classes.
38+
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico.
39+
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater.
40+
41+
## Developers:
42+
- @michelolvera (UI, UX, Quine-McCluskey, Petrick)
43+
- @AlanCruzRV (UI, UX, DB, Security)
44+
- @JorgeAr1 (UI, UX, Parser)

README.md.backup

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Minibool
2+
3+
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.
4+
5+
Developed for the Instituto Tecnológico de Morelia, as a research project approved by the Tecnológico Nacional de México.
6+
7+
## Try it
8+
9+
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).
10+
11+
### Supported languages:
12+
13+
- English - United States
14+
- Español - México
15+
- Français - France
16+
17+
*Help is requested to support more languages*.
18+
19+
## Test Locally
20+
21+
You'll need [XAMPP](https://www.apachefriends.org/) or install the following:
22+
23+
- MariaDB 10.1.36 or newer.
24+
- Apache 2.4.34 or newer.
25+
- PHP 5.6.38 or newer.
26+
- Download source code [here](https://github.com/michelolvera/Minibool/releases).
27+
28+
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:
29+
30+
$sqlUser="root"; //Your User
31+
$sqlPass=""; //Your Password
32+
33+
## Contribute
34+
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.
35+
36+
## Thanks to:
37+
- M.C. Jose Alfredo Jiménez Murillo, who always motivated the development team and gave us free Boolean algebra classes.
38+
- Tecnológico Nacional de México, for accepting the project on a national level in Mexico.
39+
- Instituto Tecnológico de Morelia, for allowing the project on one of its servers and being my Alma mater.
40+
41+
## Developers:
42+
- @michelolvera (UI, UX, Quine-McCluskey, Petrick)
43+
- @AlanCruzRV (UI, UX, DB, Security)
44+
- @JorgeAr1 (UI, UX, Parser)

0 commit comments

Comments
 (0)