/Django-Notes-Application

Automating the process from code commit to deployment and it saves time, reduces errors, and ensures that your applications are always up-to-date. In this project, we will go through a step-by-step journey of setting up a Jenkins pipeline to automate the deployment of our application, which starts with a developer pushing code to GitHub.

Primary LanguageJavaScript

Simple Notes App

This is a simple notes application built with React and Django.

Requirements

  1. Python 3.9
  2. Node.js
  3. React

Installation

  1. Clone the repository
git clone https://github.com/amar-m-cloud/django-notes-application.git
  1. Build the app
docker build -t django-notes-application .
  1. Run the app
docker run -d -p 8000:8000 django-notes-application:latest

Nginx

Install Nginx reverse proxy to make this application available

sudo apt-get update sudo apt install nginx