Skip to content

Install InfyGPT

Once you purchase the InfyGPT then you will be able to find dist.zip within the main zip.

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

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.

Setup your Database

You may use given link to setup your postgres database.

Setup your database

Environment Variables

Setup Default DB

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

App name and URL Setup

ini
APP_NAME="App Name"
APP_URL="https://your-domain.com"

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.

ini
 MAIL_MAILER =
 MAIL_HOST =
 MAIL_PORT =
 MAIL_USERNAME =
 MAIL_PASSWORD =
 MAIL_ENCRYPTION =
 MAIL_FROM_ADDRESS =
 MAIL_FROM_NAME ="Your App Name"

OpenAI Setup

ini
 OPENAI_API_KEY=
 OPENAI_ORGANIZATION=

Stripe Setup

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

ini
STRIPE_KEY=
STRIPE_SECRET_KEY=

PayPal Setup

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

ini
 PAYPAL_CLIENT_ID=
 PAYPAL_SECRET=
 PAYPAL_MODE=

Amazon S3 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.

ini
FILESYSTEM_DRIVER=s3
MEDIA_DISK=s3
ini
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=
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.

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.