Search

Tag: django

View:
Mikhail Rodionov
  • Mikhail Rodionov
  • May 7, 2020

Deploying Django Project to AWS Elastic Beanstalk, Part 3: Configuring S3 Storage and Custom Domain Name

Part 2 of the topic explained how to configure the AWS Elastic Beanstalk (EB) environment and the Django project to use the Postgres database. The current third installment will focus on configuring S3 storage for static and media files, as well as assigning a custom domain name for the app.
Read more
Mikhail Rodionov
  • Mikhail Rodionov
  • January 28, 2020

Deploying Django Project to AWS Elastic Beanstalk, Part 2: Database Settings Configuration

Part 1 of this topic covered why using AWS Elastic Beanstalk (EB) can be more beneficial for making apps if you are using Django. It showcased how to prepare your Django project for correct deployment via AWS EB. Part 2 will explain how to configure the EB environment and the Django project to use Postgres database.
Read more
Mikhail Rodionov
  • Mikhail Rodionov
  • December 12, 2019

Deploying Django Project to AWS Elastic Beanstalk

In this blog post, we will talk about getting your Django project deployed to Amazon Web Services (AWS) platform. There are different ways you can do that with AWS: one is deployment to EC2 instance running Linux (you just connect to it over SSH and work with Linux server directly), and the other one is deployment to Elastic Beanstalk. The first scenario is close to simple project setup on a local Linux machine with some extra steps involved – for that you can refer to my previous posts which cover most of the steps involved. In this post, we will focus on Elastic Beanstalk deployment scenario, going through all the steps involved in this process when it is performed from Ubuntu.
Read more
Mikhail Rodionov
  • Mikhail Rodionov
  • November 5, 2019

How to Install Django on Ubuntu Server 18.04 LTS – Part 3: Configuring Django to use PostgreSQL database

Creating apps in Ubuntu that will work seamlessly on different platforms may seem like quite the challenge. Nonetheless, with the right knowledge, you can manage that like a pro. By installing Django on Ubuntu Server 18.04 LTS and configuring it to use PostgreSQL (which is focused on SQL standards compliance), you can now easily build apps there using heterogeneous databases.
Read more
Mikhail Rodionov
  • Mikhail Rodionov
  • September 3, 2019

How to Install Django on Ubuntu Server 18.04 LTS – Part 2: Configuring Django to use MySQL database

You have probably already covered the basics of Django installation on Ubuntu Server 18.04 LTS. This framework now is ready for the ride, but, as you know, there’s always room for improvement. If you have a little interest in using default SQLite database option, then it’s time to opt for better!
Read more
Mikhail Rodionov
  • Mikhail Rodionov
  • August 15, 2019

How to: Install Django on Ubuntu Server 18.04 LTS – Part 1 Development environment installation

In times of need, a web framework comes really in hand, since it allows automating web applications running processes as much as it is possible, but there is always a fly in the ointment. In this case, it is an amount of resource required to access re-usable modules which any web site may need. However, unlike a lot of its counterparts, Django web framework provides you with connection and enabling these modules on as needed basis!
Read more