Install InfyGPT

If you have purchased the GPT Site Bot Builder system then you will be able to find dist.zip within the main zip file.

Extract that file on your local and follow the following steps:

1. Copy files to a web server

Upload dist.zip to your web server's root (public_html) and extract it there. If you are installing it on subdomain then do extract it in your subdomain's root folder.

2. Setup your Database

You may use given link to setup your postgres database.

Setup your database

3. Setup environment file

Open .env file on your server's root folder.

Setup

You need to change the following information into your environment (.env) file.

Database Setup

- APP_NAME - Name of your Application - APP_URL - Change this URL with your server URL (including trailing path if you are putting it in sub folder or root website) - DB_HOST - Put your database hostname here - DB_PORT - Put your database port here if it does not default to 5432 - DB_DATABASE - Change it to your database name - DB_USERNAME - Name of your database user - DB_PASSWORD - Password of your database user

Mail Configuration

You will also need to set up mail configuration and update the following variables. You can use the below video for the reference on how to setup email configuration for cPanel servers.

- MAIL_MAILER - MAIL_HOST - MAIL_PORT - MAIL_USERNAME - MAIL_PASSWORD - MAIL_ENCRYPTION - MAIL_FROM_ADDRESS - MAIL_FROM_NAME

OpenAI Setup

Stripe Setup

Set Stripe configuration it is using while IPD payments. Here is some links by using it you will get an idea about how to generate stripe API keys.

Paypal Setup

Set PayPal configuration it is using while IPD payments. Here is some links by using it you will get an idea about how to generate PayPal API keys.

  • Link 1

  • Link 2 - PAYPAL_CLIENT_ID= - PAYPAL_SECRET= - PAYPAL_MODE=

AWS Storage Setup

If you want to store your files to direct your s3 bucket then you have to use following .env variables. You need to change FILESYSTEM_DRIVER and MEDIA_DISK value to s3 when you are using AWS file storage.

- AWS_ACCESS_KEY_ID= - AWS_SECRET_ACCESS_KEY= - AWS_DEFAULT_REGION=us-east-1 - AWS_BUCKET= - AWS_ENDPOINT= - AWS_URL=

Or you can use your choice of storage driver to store your media assets if you want. All of your attachments will be placed into that.

5. Admin login

You can do admin login by accessing given URL.

YOUR_APP_URL/login

email: admin@infygpt.com

password: 123456

We are ready to go now.