https://github.com/101t/jasmin-submit-logs
Jasmin Submit Logs - Jasmin Web Panel with PostgreSQL
https://github.com/101t/jasmin-submit-logs
dlr jasmin python sms
Last synced: about 1 year ago
JSON representation
Jasmin Submit Logs - Jasmin Web Panel with PostgreSQL
- Host: GitHub
- URL: https://github.com/101t/jasmin-submit-logs
- Owner: 101t
- Created: 2022-05-28T20:03:25.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-31T20:47:06.000Z (over 3 years ago)
- Last Synced: 2025-03-28T09:11:19.593Z (about 1 year ago)
- Topics: dlr, jasmin, python, sms
- Language: Python
- Homepage: https://github.com/101t/jasmin-web-panel
- Size: 34.2 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jasmin Submit Logs Service
after download it create new virtual environment and install the required dependencies:
```sh
virtualenv -p python3 env
source env/bin/activate
pip install -r requirements.txt
```
copy the `.env` file from `Sample.env` and ensure the required variables for database communication.
```sh
cp Sample.env .env
```
Adding service to systemd
```sh
ln -s /jasmin/jasmin-submit-logs/sms_logger.service /etc/systemd/system/
```
Enable and Start Systemctl service
```sh
systemctl daemon-reload
systemctl enable sms_logger.service
systemctl start sms_logger.service
```
to check service up-and-running
```sh
systemctl status sms_logger.service
```