Skip to content

Instantly share code, notes, and snippets.

@Sylyac2000
Sylyac2000 / file1.txt
Created October 17, 2020 12:52
the description for this gist
String file contents
# To install virtual environment in the system
py -m pip install --user virtualenv
# To check the current version of the virtual environment
py -m pip --version
# creating the virtual environment
virtualenv -p python3 virtual_environment_name
# activating the virtual environment
@Sylyac2000
Sylyac2000 / ssh.md
Created September 27, 2022 05:30 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test

Taken from: http://michal.karzynski.pl/blog/2013/06/09/django-nginx-gunicorn-virtualenv-supervisor/

Setting up Django with Nginx, Gunicorn, virtualenv, supervisor and PostgreSQL

[Django][1] is an efficient, versatile and dynamically evolving web application development framework. When Django initially gained popularity, the recommended setup for running Django applications was based around Apache with mod_wsgi. The art of running Django advanced and these days the recommended configuration is more efficient and resilient, but also more complex and includes such tools as: Nginx, Gunicorn, virtualenv, supervisord and PostgreSQL.

In this text I will explain how to combine all of these components into a Django server running on Linux.