# Configuration

Each page you want to use ChargeOver.js on needs a few lines of configuration code to set things up. You can find the
configuration code within your ChargeOver account:

Log in to ChargeOver, and click the settings gear/cog in the top right
Choose "Developer" from the left-side navigation menu
Choose "ChargeOver.js"
Enable ChargeOver.js
Click the save button to save the configuration
The configuration code should be embedded in the `<HEAD>` section of your HTML page.

## Example

```html
<!--
 This is an EXAMPLE configuration only
   You need to get YOUR OWN CONFIGURATION from YOUR OWN CHARGEOVER ACCOUNT
   <<< See the CONFIGURATION section to get these for your own ChargeOver account
-->
<head>
    <script src="https://dev.chargeover.com/assets/minify/?g=chargeover.js"></script>
    <script>
        ChargeOver.Core.setup({
            'instance': 'dev.chargeover.com',
            'token': '6EILWfekvcjbiMz2F5ulDAXNrwSdp0nK'
        });
    </script>
</head>
```
