Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Patchman | 290 | a month ago | 37 | February 16, 2022 | 53 | gpl-3.0 | Python | |||
Patchman is a Linux Patch Status Monitoring System | ||||||||||
Freedombox | 172 | 3 days ago | 280 | other | Python | |||||
Easy to manage, privacy oriented home server. Read-only mirror of https://salsa.debian.org/freedombox-team/freedombox | ||||||||||
Debian Set Up For Django | 168 | 2 years ago | 3 | |||||||
Set up clean Django server for Django projects. Nginx, Gunicorn, Django, Python 3.7, PostgreSQL, Supervisor | ||||||||||
Wnpp.debian.net | 40 | 3 hours ago | 1 | agpl-3.0 | Python | |||||
:earth_africa: Code powering website "Debian Packages that Need Lovin'" created in 2009 | ||||||||||
Djeasy | 27 | a year ago | mit | Python | ||||||
Django Project Deploy Easier to in Debian Distribution! | ||||||||||
Strongtnc | 22 | 7 months ago | 3 | agpl-3.0 | Python | |||||
BYOD TNC Database Management Tool | ||||||||||
Guiaslenguajes | 21 | 7 days ago | gpl-3.0 | Ruby | ||||||
Guías y Códigos de C, C++, HTML, PHP, Python, Ruby, Django, JavaScript, Jquery, MySQL, PostgreSQL, Nginx, Apache, Laravel, Comandos de GNU/Linux y muchos más para practicar y aprender. | ||||||||||
Deploy Django | 10 | 11 years ago | Python | |||||||
Fabfile for provisioning and deploying Django on Debian 6 | ||||||||||
Elephaas | 9 | 6 years ago | apache-2.0 | Python | ||||||
Elephant Herd as a Service; Manage Postgres from a web tool. | ||||||||||
Gunicorn_django Initscript | 9 | 11 years ago | gpl-3.0 | Shell | ||||||
Debian initscript for gunicorn_django |
You should check this package.
sudo apt-get install python-pip
sudo apt-get install python3-pip
sudo apt-get install virtualenv
pip install djeasy
#or
pip3 install djeasy
This is important this project. Because your project doesn't match this directory doesn't work.
# Example Project ;
DjangoBlog
├── DjangoBlog
│ ├── __init__.py
│ ├── settings.py
│ └── urls.py
│ └── wsgi.py
├── Blog
│ ├── __init__.py
│ └── admin.py
│ └── apps.py
│ └── tests.py
│ └── views.py
requirements.txt ---> Add!!
Example requirements.txt : https://goo.gl/0Y9yCB
Do not forget to add the requirements.txt file.
Django Settings.py ALLOWED_HOSTS = [] server ip or domain add.
djeasy
Output :
--create Create a new site.
--nginx Nginx restart
You can follow this;
cd /home/ # as you wish. My recommended in your /home/ directory.
virtualenv -p python3 DjangoEnv # example name : DjangoEnv
Example :
cd /home/
git clone https://github.com/AliYmn/aliyaman.org
mv aliyaman.org DjangoBlog # to change name
We'll finish the process in four steps.
djeasy --create
NOT : You can write multiple site. For example, example1.com example2.com
Example;
server ip or domain = 192.241.163.191 example.com blog.example.com
Commands used ;
--nginx Nginx restart
gunicorn_name --gunicorn Gunicorn restart
Example;
djeasy --nginx
djeasy DjangoBlog --gunicorn
Output;
NOT : The Json file is saved in the home directory, please do not delete it.