A React TMA application designed to interact with the company's customer base
To run the application, npm must be initialized:
npm installTo launch the application, you need to configure the .env file on the client side. The server's API address must be specified in the variable:
REACT_APP_API_ENDPOINT=On the server side, it is also necessary to configure the .env file and specify all the necessary parameters:
TELEGRAM_BOT_TOKEN=
SITE_URL=
LOCAL_URL=
PORT=
DB_HOST=
DB_USER=
DB_PASSWORD=
DB_NAME=The application is launched by the command:
npm run start// by @swiftup