Desktop application to follow a process of collaborative teamwork and face-to-face dialogue following the Interpretative Structural Modeling algorithm by John Warfield.
- Client Details
- Environment URLS
- Team
- Management tools
- Requirements
- Setup the project
- Running the Flask server
Name | Role | |
---|---|---|
Graciela Caffarel Rodríguez | graciela.caffarel@itesm.mx | Product Owner |
Luis Humberto González Guerra | lhgonzalez@itesm.mx | Client |
Name | Role | |
---|---|---|
Gerardo Andrés Gálvez Vallejo | A00513062@itesm.mx | Development |
Luis Fernando Hernández Sánchez | A00815356@itesm.mx | Development |
Barbara Berenice Valdez Mireles | A01175920@itesm.com | Development |
David Orlando de la Fuente Garza | A00817582@itesm.mx | Development |
- pip
pip is already installed if you are using Python 2 >=2.7.9 or Python 3 >=3.4 downloaded from python.org. - python-dotenv
$ pip install --user python-dotenv
$ pip install --user Flask
$ pip install --user flask-mysql
$ pip install --user flask-bcrypt
$ pip install --user flask-cors
- Clone this repository into your local machine
$ git clone git@github.com:ProyectoIntegrador2018/mei_backend.git
- Step into the ElectronFlaskTest directory
$ cd ElectronFlaskTest
- Create a file called
.env
inside the ElectronFlaskTest directory and fill it with the following environment variables set to the MySQL configuration of your liking.
MYSQL_DATABASE_USER=example
MYSQL_DATABASE_PASSWORD=example
MYSQL_DATABASE_DB=example
MYSQL_DATABASE_HOST=example
- Start the server
$ python hello.py
You should see the following output:
* Serving Flask app "hello"
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
This means that the server is up and running.
Take note that if you kill this process you will kill the web service, and you will probably need to lift it up again.