Thank you for purchasing Eclassify. We appreciate your support. In this documentation, you will find instructions on how to set up the admin panel and mobile application for Eclassify. This document also provides features of Eclassify. If you have any questions, feel free to reach out. Thank you for choosing Eclassify!
1. Unzip the code you will see the Admin Panel inside the zip.
2. Upload this folder content on your server in subdomain folder.
3. After uploading visit your domain url. You will see the installation wizard.Follow the instructions.
flutter pub get
cd ios
pod install
cd ..
flutter pub run change_app_package_name:main your_new_package_name
flutter run
Open .env file and change the following details
.env file
public/css/style.css
file
Geocoding API,
Places API,
Geolocation APIs,
Maps JavaScript API
from
'Enable API and Services'.
Make sure you have you have enabled billing account otherwise location search will not work in web.
npm run dev
node js
npm
pm2
technologies.
We have
assumed
that you are using a
debian
based OS, apt is your package manager.
If you are
using any
other
linux distro then apt will be replaced with the respective
package
manager of
the OS
NodeJS can be installed using NVM by which multi Node version can be controlled easily.
sudo apt install curl
curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash>
sudo apt install curl
nvm install node 20.*
Check if node js is installed correctly using this command
node -v
By running the following command, PM2 server can be installed globally
npm install pm2 -g
Before set port check available ports with this command
sudo lsof -i -P -n | grep 8003
package.json
and
.htaccess
file
node_modules
installed in your
directory.
npm install
npm run build
pm2 start "npm start" -n "YOUR_PROJECT_NAME"
pm2 ls
If you are getting errors in the pm2 process , then run pm2 logs and send us the Screenshot of the error, so that we can guide you to resolve your issues.
If you want to restart your pm2 process then run pm2 restart id // Replace id with your process id
For example here id is 0 in the above screenshot -->
pm2 restart 0
pm2 delete "YOUR_PROJECT_NAME"