-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# mejorar o agregar | ||
|
||
para mejorar el desarrollo debes conocer python y conocer virtual-env | ||
|
||
se recomienda usar virtualenv para desarrollar el bot "se debe usar python3 no python2" pip o pip3 install virtualenv | ||
|
||
``` bash | ||
# windows | ||
python -m venv venv | ||
|
||
# linux y mac | ||
python3 -m venv venv | ||
``` | ||
|
||
para activar vitrualenv: | ||
* windows: .\venv\scripts\activate.bat | ||
* linux y mac: source ./venv/bin/activate | ||
|
||
## install python module: | ||
luego de activar el virtualenv lo siguiente es ejecutar lo siguiente. | ||
### opcion 1 | ||
>pip install -r requirements.txt | ||
### opcion 2 | ||
>pip3 install -r requirements.txt | ||
## compilar app | ||
``` bash | ||
pyinstaller --onefile app.py -n=stack-supreme | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,31 @@ | ||
# stack-supreme | ||
|
||
[![Creative Commons License](https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png)](http://creativecommons.org/licenses/by-nc-sa/4.0/) | ||
|
||
este conjunto de herramientas de terminal esta basado en: | ||
- hardware information de stack-analyze npm 1.1.0: | ||
solo la parte de version de sistema operativo | ||
- speedtest nueva para la nueva version de stack analyze npm 1.2.5 | ||
|
||
desarrollado por omega5300 stack-analyze | ||
desarrollado por omega5300 de stack-analyze | ||
|
||
usos de programa: | ||
|
||
**como powershell** | ||
``` powershell | ||
./stack-supreme <commando> | ||
``` | ||
|
||
**simbolo de sistema o conocido como cmd** | ||
``` bat | ||
stack-supreme <commando> | ||
``` | ||
|
||
## commandos disponibles | ||
|
||
| commandos | descripcion | | ||
| ----------- | ----------- | | ||
| network | comprobar su velocidad de subida, bajada y ping de tu red | | ||
| system | muestra la version de sistema operativo | | ||
|
||
licencia CC-BY-NC-SA | ||
> este sotfware es para fines no comerciales. |