Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

Commit

Permalink
🛠️ Added CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
areebahmeddd committed Mar 5, 2024
1 parent c64a7df commit cc16f55
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 14 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Insight-Ink CI/CD

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies
run: |
cd Frontend
npm install
- name: Build React app
run: |
cd Frontend
npm run build
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install Python dependencies
run: |
cd Backend
pip install -r requirements.txt
43 changes: 29 additions & 14 deletions Frontend/public/index.html
Original file line number Diff line number Diff line change
@@ -1,24 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000">
<meta name="description" content="Automated feedback system for Press Information Bureau (PIB), developed by Team Innov8 in Smart India Hackathon - 2023">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Automated feedback system for Press Information Bureau (PIB), developed by Team Innov8 in Smart India Hackathon - 2023"
/>

<meta property="og:site_name" content="Insight Ink">
<meta property="og:title" content="Insight Ink">
<meta property="og:description" content="Automated feedback system for Press Information Bureau (PIB), developed by Team Innov8 in Smart India Hackathon -2023">
<meta property="og:image" content="https://imagizer.imageshack.com/img924/2821/vb5A2a.png">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Insight Ink" />
<meta property="og:title" content="Insight Ink" />
<meta
property="og:description"
content="Automated feedback system for Press Information Bureau (PIB), developed by Team Innov8 in Smart India Hackathon - 2023"
/>
<meta
property="og:image"
content="https://imagizer.imageshack.com/img924/2821/vb5A2a.png"
/>
<meta property="og:type" content="website" />

<link rel="icon" href="%PUBLIC_URL%/logo-modified.ico">
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap">
<link rel="icon" href="%PUBLIC_URL%/logo-modified.ico" />
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap"
/>

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-45799926-9"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-45799926-9"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
Expand Down

0 comments on commit cc16f55

Please sign in to comment.