Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akkupy/calculator_num_function

A web based calculator and basic mathematical functions calculator.(Uses Python flask as Backend)
https://github.com/akkupy/calculator_num_function

calculator calculator-app calculator-application flask flask-application heroku python webapp

Last synced: about 2 months ago
JSON representation

A web based calculator and basic mathematical functions calculator.(Uses Python flask as Backend)

Awesome Lists containing this project

README

        


Calculator And Number Function


A Webapp Calculator!


Based on Python Flask

# Deploying To Heroku

[![Deploy To Heroku](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/akkupy/Calculator_Num_Function)

# Steps To Follow On Heroku

* Click Deploy To Heroku
* Fill up the App name
* Deploy
* Wait for the deployment
* Check if your site works on going to https://{app-name}.herokuapp.com!

# Self-hosting (For Devs)

## Simply clone the repository and run the main file:
```sh
# Install Git First // (Else You Can Download And Upload to Your Local Server)
$ git clone https://github.com/akkupy/Calculator_Num_Function
# Open Git Cloned File
$ cd Calculator_Num_Function
# Config Virtual Env (Skip is already Done.)
$ virtualenv -p /usr/bin/python3 venv
$ . ./venv/bin/activate
# Install All Requirements.
$ pip(3) install -r requirements.txt
# Start Service
$ python(3) -m app
```