I propose to consider the process of installing and configuring a Django project on Mac OS X based on an existing project.
Some steps will be similar to those already performed in the Django setup article for Ubuntu .
Setting up a virtual environment
-
Intall python 3
brew install python3
-
Install pip
sudo easy_install pip
-
Install virtualenv to create virtual environments
sudo pip3 install virtualenv
-
Setting up a virtual environment for a project
virtualenv project_env --python=python3
-
Go to the directory of the virtual environment of the project and clone the repository.
cd project_env git clone git@bitbucket.org:MyUser/project.git
-
We also clone submodules if your project uses git submodule
cd project git submodule init git submodule update
-
I hope that you are using the requirements.txt file, because the time has come to install all the necessary packages in the project
pip install -r requirements.txt
Install the required version of Python
If you need a specific version of python, for example, if the repositories of your production server do not have the latest version, you need to configure your Mac OS X specifically to work with the required version.
brew install pyenv echo 'eval "$(pyenv init -)"' >> ~/.bash_profile source ~/.bash_profile brew install zlib pyenv install 3.6.7
If you cannot install python and the following error occurs
BUILD FAILED (OS X 10.14.4 using python-build 20180424) Inspect or clean up the working tree at /var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274 Results logged to /var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274.log Last 10 log lines: File "/private/var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274/Python-3.6.7/Lib/ensurepip/__main__.py", line 5, in <module> sys.exit(ensurepip._main()) File "/private/var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274/Python-3.6.7/Lib/ensurepip/__init__.py", line 204, in _main default_pip=args.default_pip, File "/private/var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274/Python-3.6.7/Lib/ensurepip/__init__.py", line 117, in _bootstrap return _run_pip(args + [p[0] for p in _PROJECTS], additional_paths) File "/private/var/folders/qk/l3vyb_653ksb55yt5r54rt380000gn/T/python-build.20190421214232.40274/Python-3.6.7/Lib/ensurepip/__init__.py", line 27, in _run_pip import pip._internal zipimport.ZipImportError: can't decompress data; zlib not available make: *** [install] Error 1
then create a file .zshrc with the following contents
# For compilers to find zlib you may need to set: export LDFLAGS="${LDFLAGS} -L/usr/local/opt/zlib/lib" export CPPFLAGS="${CPPFLAGS} -I/usr/local/opt/zlib/include" # For pkg-config to find zlib you may need to set: export PKG_CONFIG_PATH="${PKG_CONFIG_PATH} /usr/local/opt/zlib/lib/pkgconfig"
Next, perform the remaining actions.
source .zshrc pyenv install 3.6.7
Check available versions of python
pyenv versions
Setup the required version of python
pyenv local 3.6.7 pyenv global 3.6.7
Check the version of python that is now used on your Mac OS X.
python --version
After that, you will need to repeat all the steps from the settings of the virtual environment, starting with step 4, if you have already installed virtualenv. Or completely repeat all those steps.
Install and configure PostgreSQL
-
Uninstalling a previous version of Postgres
brew uninstall --force postgresql
-
Delete all Postgres files
rm -rf /usr/local/var/postgres
-
Installing Postgres using Homebrew
brew install postgres
-
Installing PostGIS using Homebrew
brew install postgis
-
Start PostgreSQL server. You may need to run this command every time you develop a site.
pg_ctl -D /usr/local/var/postgres start
-
Creating a project database. Many of these steps were covered in the very first article on setting up Django on a computer running OS
psql postgres CREATE DATABASE myproject; CREATE USER myprojectuser WITH PASSWORD 'password'; ALTER ROLE myprojectuser SET client_encoding TO 'utf8'; ALTER ROLE myprojectuser SET default_transaction_isolation TO 'read committed'; ALTER ROLE myprojectuser SET timezone TO 'UTC'; GRANT ALL PRIVILEGES ON DATABASE myproject TO myprojectuser; \q
Install and configure Nginx
I use Nginx to distribute static content, so we will also install Nginx on the development machine.
brew install nginx sudo brew services start nginx
Nginx configuration setup
At this step you need to configure the Nginx server. For what you need to edit the nginx.conf file, as well as create the settings file of your server in the servers directory.
nano /usr/local/etc/nginx/nginx.conf
Delete the contents of the file and add the following information..
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; include servers/*; }
Next, create a file myproject
touch /usr/local/etc/nginx/servers/myproject
And add content that will look like this.
server { listen 80; server_name 111.222.333.44; # здесь прописать или IP-адрес или доменное имя сервера location /static/ { root /Users/<user>/myprojectenv/myproject/myproject/; expires 30d; } location /media/ { root /Users/<user>/myprojectenv/myproject/myproject/; expires 30d; } location / { proxy_pass http://127.0.0.1:8000; proxy_set_header Host $server_name; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } }
Then restart the server Nginx
sudo brew services restart nginx
Conclusion
And then we do not forget to complete the migration of the database, the collection of static files through collectstatic and other procedures required in your project.
For Django, I recommend Timeweb VDS-server .