This is a simple notes app built with React and Django.
- Python 3.9
- Node.js
- React
apt-get update apt install nginx
- Clone the repository
git clone https://github.com/LondheShubham153/django-notes-app.git
- Build the app
docker build -t notes-app .
- Run the app
docker run -d -p 8000:8000 notes-app:latest
Install Nginx reverse proxy to make this application available
sudo apt-get update
- 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)
- 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
- systemctl restart nginx