ian-lim-tn / currency-conv

A simple currency converter project

Home Page:https://currency-conv-api-flask.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

currency-conv

A simple currency converter project

Dependencies

  1. virtualenv (venv for python3 and above)

    Create virtual env (let env = filename)

    python -m venv env

    Activate venv (virtual env is required to run Flask app)

    Unix

    source env/bin/activate

    Windows

    .\env\Scripts\activate 
  2. package dependencies (pip requirements)

    pip install -r requirements.txt

Running Flask

  1. $ export FLASK_ENV=development
    $ flask run

(On Windows you need to use set instead of export.)

In the event that the above doesn't work for Windows' users, try the following with Powershell

$ env:FLASK_ENV = "development"
flask run

About

A simple currency converter project

https://currency-conv-api-flask.herokuapp.com/


Languages

Language:Python 62.4%Language:HTML 32.8%Language:CSS 4.9%