Installation¶
Pre-requirements¶
To use this app (if you plan to use Docker containerization), you need to:
1. Install a reverse proxy server on your hosting (Nginx or another option). For Debian-based systems:
sudo apt install nginx
- Then, you need to add a configuration that will proxy requests to the app web server:
server { client_max_body_size 20M; # This is the maximum size that the frontend allows for uploads server_name django-gallery.ru; # Your addres or domain location / { proxy_set_header Host $http_host; proxy_pass http://127.0.0.1:8070; #8070 is the default port that the app web server will listen to } }
You also need to provide HTTPS for django-gallery to work. You can use certbot for this purpose.
2. Install Docker and Docker Compose: To install using the apt repository: Add Docker’s official GPG key:
.. code-block:: bash
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc
- Add the repository to Apt sources:
echo \ "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ sudo tee /etc/apt/sources.list.d/docker.list > /dev/null sudo apt-get update
- install docker packages:
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
Installation¶
- Clone the repository from your fork or the original repository:
git clone git@github.com:Rodyapa/Django-gallery.git (if you use ssh and clone from your repository.)
- Move into the project folder:
cd Django-gallery
- Create an .env file:
touch .env
Set the required configuration in the .env file. (See: :doc:Required configuration)
- Run the app containers with Docker Compose:
sudo docker compose -f docker-compose.production.yml up -d
Required configuration¶
(REQUIRED) POSTGRES_DB - Name of the database that will be created in the PostgreSQL container for your app.
(REQUIRED) POSTGRES_USER - Name of the database user that will be created in the PostgreSQL container for your app.
(REQUIRED) POSTGRES_PASSWORD - Password for the database user that will be created in the PostgreSQL container for your app.
(REQUIRED) DB_HOST=db - Host for the Django app to connect to the database. If you do not want to change the Compose file, leave it as ‘db’.
(REQUIRED) DB_PORT=5432 - Port that Django will use to connect to the database. You should leave it as 5432 by default.
DEFAULT_SU_NAME - If provided, Django will create a superuser with this name at the start of the project.
DEFAULT_SU_PASSWORD - If provided, Django will create a superuser with this password at the start of the project.
(REQUIRED) DEBUG_IS_ON=False - Sets the debug mode for the Django app. It should be False for production.
(REQUIRED) SECRET_KEY - ecret key for the Django app to work. You should write or generate it manually. It will be generated automatically in the future.
(REQUIRED) HOSTING_IP - Needed for Django to process requests.
HOSTING_DOMAIN - Needed for Django to process requests. Can be null if an address is provided.
SITE_TITLE - Will be used everywhere the site title is displayed. If not provided, then ‘MY_SITE’ will be used.
VK_LINK - Standard link on the Contact Page. Appears with a VK symbol.
INSTAGRAM_LINK - Standard link on the Contact Page. Appears with an Instagram symbol.
COPYRIGHT - Your copyright. Appears in the footer on each page.
TELEGRAM_LINK - Standard link on the Contact Page. Appears with a Telegram symbol.
DROPBOX_TARGET_PATH - Path to your Dropbox folder where you want to store your app backups.
DROPBOX_APP_KEY - Key for your Dropbox app.
DROPBOX_APP_SECRET - Secret for your Dropbox app.
DROPBOX_ACCESS_TOKEN - Access token for your app. For now, you need to generate it manually.
WATERMARK_TEXT - Text that will be used for automatic watermarking on your photos.