Руководство по быстрому старту
Get FeedbackPulse SaaS up and running in 15 minutes. This is the express version — for detailed instructions, see the full Установка Guide.
Перед началом
Убедитесь, что у вас есть:
- Сервер или VPS (рекомендуется Ubuntu 22.04+)
- PHP 8.2 или выше
- MySQL 8.0+ или MariaDB 10.6+
- Веб-сервер Apache или Nginx
- Доменное имя, указывающее на ваш сервер
- Учётная запись SMTP email (Gmail, Mailgun и т.д.)
Step 1: Upload Files
Upload the FeedbackPulse SaaS files to your server's web directory:
# Example for a typical VPS
cd /var/www
unzip feedbackpulse-saas.zip
cd feedbackpulse-saas
Step 2: Set Permissions
# Storage and cache must be writable
chmod -R 775 storage bootstrap/cache
chown -R www-data:www-data storage bootstrap/cache
Step 3: Point Your Web Server
Your web server must point to the public directory — this is critical!
Apache — Create a virtual host:
<VirtualHost *:80>
ServerName yourdomain.com
DocumentRoot /var/www/feedbackpulse-saas/public
<Directory /var/www/feedbackpulse-saas/public>
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
Nginx — Create a server block:
server {
listen 80;
server_name yourdomain.com;
root /var/www/feedbackpulse-saas/public;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
}
Critical: The web root must be the
publicfolder, NOT the project root. This is a Laravel security requirement.
Step 4: Run the Web Installer
Откройте браузер and navigate to:
https://yourdomain.com/install
The installer will guide you through 5 steps:
- License — Введите ваш Envato purchase code (or skip if not using Envato)
- Требования — Automatic check for PHP version, extensions, and permissions
- База данных — Введите ваш MySQL/MariaDB credentials
- Admin — Create your superadmin account
- Email — Configure SMTP settings
Сове т: Have your database credentials and SMTP details ready before starting the installer.
Step 5: Set Up Cron Job
FeedbackPulse needs a cron-задача to run scheduled tasks (дайджест emails, trial expiry, хранение данных, etc.).
On VPS / Dedicated:
crontab -e
Add this line:
* * * * * cd /var/www/feedbackpulse-saas && php artisan schedule:run >> /dev/null 2>&1
On Shared Hosting (URL-based cron):
Use the web cron endpoint with the CRON_TOKEN shown on the installer completion page:
wget -q -O /dev/null "https://yourdomain.com/cron/run?token=YOUR_CRON_TOKEN"
The installer completion page shows both options pre-filled. Just copy and paste!
Step 6: Create Storage Symlink
This makes uploaded files (logos, photos) accessible from the web:
php artisan storage:link
Shared hosting? If symlinks aren't supported, skip this step. FeedbackPulse automatically serves files via a built-in PHP fallback route.
Step 7: Verify It Works
- Visit
https://yourdomain.com— you should see the лендинг - Visit
https://yourdomain.com/login— log in with your superadmin credentials - You're in the Superadmin Panel!
Что делать дальше
Now that you're installed, here's your quick checklist:
As Superadmin:
- Перейдите в Admin → Plans — review the default тарифные планы
- Перейдите в Admin → Настройки — configure платёжные шлюзы (Stripe/PayPal)
- Перейдите в Admin → Landing Page — customize your public лендинг
- Перейдите в Admin → Настройки → Email — send a test email to verify SMTP
Create Your First Tenant:
- Open a new incognito/private browser window
- Visit
https://yourdomain.com/register - Fill out the registration form (name, email, company, subdomain)
- Verify your email
- Войдите — you're now in the Tenant Панель управления
Set Up Your First Product & Campaign:
- Перейдите в Продукты → Create — add your first product
- Перейдите в Кампании → Create — create a feedback campaign for that product
- Перейдите в Настройки → Branding — set your brand colors and logo
- Visit your public pages:
https://yourdomain.com/p/{your-tenant-slug}— Product Hubhttps://yourdomain.com/wall/{your-tenant-slug}— Feedback Wallhttps://yourdomain.com/feedback/{campaign-slug}— Feedback Formhttps://yourdomain.com/roadmap/{your-tenant-slug}— Дорожная картаhttps://yourdomain.com/changelog/{your-tenant-slug}— Журнал изменений
You're Live!
Congratulations! FeedbackPulse SaaS is now running on your server. Head to the detailed documentation sections to learn about all the features:
- Superadmin Panel — manage your platform
- Tenant Панель управления — learn every feature
- Public Pages — understand the end-user experience
- Настройка — fine-tune everything