Skip to content

Commit

Permalink
Create Config file
Browse files Browse the repository at this point in the history
Pay with Pi leading payment app
Use Pay with pi for the fastest, most secure online and in-store payments! Pay for movie tickets, food, coffee, fashion, gas, and many more in Pay with Pi.

Quick, easy, convenient and secure.

**Send / Receive Payments**

Pay in store or send money to friends. No need to carry cash or worry about loose change!

**Online Top-Ups and Utility Bill Payments**

Top-up your mobile phone, pay your utility and internet bills or settle your monthly insurance premiums bills through Pay with Pi.

**Add Money to your Pay with Pi Wallet**

Add money to your Pay with pi app via Pay&Go machines or transfer from multiple online banking apps cash-in at all Banks branches and agent world wide.

**Explore Nearby**

Explore places near you that accept payment through Pay with pi wallet. Cinemas, restaurants, coffee shops, supermarkets, and gas stations are all joining forces with Pay with Pi to make your life more connected and more mobile.

Don’t forget to look out for great deals exclusively for Pay with pi users! Start enjoying the amazing benefits of Pay with Pi. Download it now.
  • Loading branch information
Juma-creator authored Sep 28, 2024
1 parent 59fa8d6 commit 364c24e
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions Config file
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"database": {
"host": "localhost",
"port": 27017,
"name": "mydatabase"
},
"server": {
"port": 3000
},
"apiKeys": {
"service1": "your-api-key-here",
"service2": "your-api-key-here"
}
}

database:
host: localhost
port: 27017
name: mydatabase

server:
port: 3000

apiKeys:
service1: your-api-key-here
service2: your-api-key-here

DATABASE_HOST=localhost
DATABASE_PORT=27017
DATABASE_NAME=mydatabase
SERVER_PORT=3000
API_KEY_SERVICE1=your-api-key-here
API_KEY_SERVICE2=your-api-key-here

module.exports = {
database: {
host: 'localhost',
port: 27017,
name: 'mydatabase'
},
server: {
port: 3000
},
apiKeys: {
service1: 'your-api-key-here',
service2: 'your-api-key-here'
}
};

0 comments on commit 364c24e

Please sign in to comment.