Skip to content

Instantly share code, notes, and snippets.

@LinuxPlaner
Created November 30, 2020 10:35
Show Gist options
  • Save LinuxPlaner/936c9424e4bd4757d822d37156f452bc to your computer and use it in GitHub Desktop.
Save LinuxPlaner/936c9424e4bd4757d822d37156f452bc to your computer and use it in GitHub Desktop.
Jasmin SMS Gateway Install Linux
If you need any help related with Git+GitHub+GitLab contact with me:
Telegram:@LinuxPlaner
Email: [email protected]
Skype: https://join.skype.com/YsiueF0XCKLX
WhatsApp: +8801729848319
#===========================================================================================+++#
# Jasmin SMPP Panel (Server)
Jasmin SMPP Panel for Jasmin SMS Gateway. Need to setup contact with **skype: helios-sw**
# Technology Stack
- Ubuntu 18.04.3 LTS
- Django
- Apache
- SQlite
- Git
## Installation
***1st Phase***
Complete Things To Do After Install Ubuntu:
```shell
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install launchpad-getkeys
sudo launchpad-getkeys
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt install git
sudo git config --global user.name "YourName"
sudo git config --global user.email [email protected]
sudo apt-get install python-jasmin
sudo systemctl enable jasmind
sudo systemctl start jasmind
sudo apt list --upgradable
sudo apt upgrade -y
sudo apt -y autoclean
sudo apt -y clean
sudo apt update
```
***2nd Phase***
Install Apache+clone repository to /var/www/:
```shell
sudo apt-get install apache2 libapache2-mod-wsgi
sudo systemctl enable apache2
sudo systemctl restart apache
cd /var/www/
sudo git clone https://github.com/amechax/JasminWebPanel.git
sudo rm -rf htm
cd html
sudo apt install python-pip
sudo ./manage.py migrate
sudo ./manage.py createsuperuser
sudo ./manage.py collectstatic
```
To save local_settings.py press Ctrl+x then press "y" and hit Enter
***Run as development***
```shell
sudo python manage.py runserver [::]:8000
# visit http://localhost:8000/
#Jasmin #SMS #Gateway Install Linux
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment