Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swativerma2/declarative-ci-cd-pipeline
implemented an end to end declarative CI/CD pipeline for a Django application
https://github.com/swativerma2/declarative-ci-cd-pipeline
aws cicd docker ec2 jenkins webhooks
Last synced: 2 months ago
JSON representation
implemented an end to end declarative CI/CD pipeline for a Django application
- Host: GitHub
- URL: https://github.com/swativerma2/declarative-ci-cd-pipeline
- Owner: SwatiVerma2
- Created: 2024-08-11T09:32:10.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T20:04:14.000Z (4 months ago)
- Last Synced: 2024-09-30T17:42:56.658Z (3 months ago)
- Topics: aws, cicd, docker, ec2, jenkins, webhooks
- Language: JavaScript
- Homepage:
- Size: 1.64 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
1. Clone the repository
```
git clone https://github.com/LondheShubham153/django-notes-app.git
```2. Build the app
```
docker build -t notes-app .
```3. 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`
`sudo apt install nginx`Project from TWS