Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yzgyyang/momoney-backend


https://github.com/yzgyyang/momoney-backend

Last synced: 19 days ago
JSON representation

Awesome Lists containing this project

README

        

# MoMoney-Backend

## Running the Flask app

- Make sure you have [Python3](https://www.python.org/downloads/) installed on your computer.
- Clone this repo into your computer.
- Create a new **.env** file in the root folder of the project. The .env file should at least contain the following variables
```
CLIENT_ID=''
CLIENT_SECRET=''
REDIRECT_URL=''
```
The values for these variables are available on the [developer page](https://my.freshbooks.com/#/developer)
- Install all the dependencies by running the following commands
```
$ pipenv install
$ pipenv shell
```
- Run the app using the Flask command.
```
$ flask run --cert=adhoc
```
- Click on the **Authorizaton URL** for you application available on the [developer page](https://my.freshbooks.com/#/developer)
- Login to the FreshBooks application using the credentials for the test account given to you during the hackathon.
If you have correctly set up you application on **FreshBooks** and entered your credentials on the **.env** file you should get the following output.
```
You have successfully logged in for First Last
```

If you can see the above output, congrats you can now start building!