Skip to content

Khaira11/django-notes-app

 
 

Repository files navigation

Simple Notes App

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

Requirements

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

Installation

apt-get update apt install nginx

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

Nginx

Install Nginx reverse proxy to make this application available

sudo apt-get update

  1. Copy the content in foler cd /django-notes-app/mynotes/build cp -r * /var/www/html (use sudo if you are not logged with the root user)
  2. Use nginx proxy system cd /etc/nginx/sites-enabled/ vi default and add proxy_pass http://127.0.0.1:8000; just after the location
  3. systemctl restart nginx

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 48.4%
  • CSS 46.9%
  • Python 4.0%
  • Other 0.7%