Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/akkupy/calculator_num_function
- Owner: akkupy
- License: gpl-3.0
- Created: 2021-08-14T19:03:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-08-15T08:45:30.000Z (over 3 years ago)
- Last Synced: 2023-04-22T07:29:20.632Z (over 1 year ago)
- Topics: calculator, calculator-app, calculator-application, flask, flask-application, heroku, python, webapp
- Language: CSS
- Homepage:
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```