Giter VIP home page Giter VIP logo

carwash_ussd_system's Introduction

Flask USSD

For demo purposes, the USSD Flask app runs on Flask-Ngrok, this automatically gives a you a ngrok link that shall be used as the callback URL. Copy the link given (https) and paste it at the callback for the USSD code. After the testing is done, we shall now deploy our system using apache and setup the database, instructions to be provided on the next commit.

Installing and Running.

Install and update using pip:

$ pip3 install -U Flask
$ pip3 install flask-ngrok (SKIP INSTALLATION IF YOU WISH TO RUN ON SERVER)

$ pip3 install flask-ngrok (SKIP STEP IF YOU WISH TO RUN ON SERVER)

$ flask run
  * Runs on "NGROK LINK PROVIDED" (Press CTRL+C to quit)

Configure and Enable a New Virtual Host.

Issue the command below to:

$ sudo nano /etc/apache2/sites-available/FlaskApp.conf

Add the following lines of code to the file to configure the virtual host. Be sure to change the ServerName to your domain or cloud server's IP address:

`` <VirtualHost *:80>

ServerName mywebsite.com ServerAdmin [email protected] WSGIScriptAlias / /var/www/FlaskApp/flaskapp.wsgi <Directory /var/www/FlaskApp/FlaskApp/>

Order allow,deny Allow from all

</Directory> ErrorLog ${APACHE_LOG_DIR}/error.log LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

``

Save and close the file.

Enable the virtual host with the following command:

$ sudo a2ensite FlaskApp

Configure the .wsgi File by entering the python path and the path for flask conf file

Restart apache

carwash_ussd_system's People

Contributors

michaelmurwayi avatar paulwababu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.