Skip to content

Commit f7f2511

Browse files
authored
Merge branch 'main' into main
2 parents d972df9 + 135dddf commit f7f2511

File tree

29 files changed

+528
-73
lines changed

29 files changed

+528
-73
lines changed

.dockerignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
npm-debug.log
3+
build

Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Using latest Node.js base image
2+
FROM node:18
3+
4+
# Set the working directory in the container
5+
WORKDIR /usr/src/app
6+
7+
# Copy package.json and package-lock.json
8+
COPY package*.json ./
9+
10+
# Install app dependencies
11+
RUN npm install
12+
# If you are building your code for production
13+
# RUN npm ci --omit=dev
14+
15+
# Bundle app source
16+
COPY . .
17+
18+
# Expose the PORT
19+
EXPOSE 3000
20+
21+
# Start the server by building the app
22+
CMD [ "npm", "start" ]

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
<p align="center"><a href="/"><img src="https://user-images.githubusercontent.com/76242769/233774732-447713dd-db8d-4c95-9c66-827ef84cbcf8.png" title="Logo" alt="Logo" height="150px"/></a></p>
44
<div align="center">
5-
<br>
6-
<img src="https://api.netlify.com/api/v1/badges/5d47c2fd-0dc1-4af2-ba5a-8519bf5ec74d/deploy-status" />
7-
<img src="https://img.shields.io/github/issues/devs-in-tech/DevsInTech" />
8-
<img src="https://img.shields.io/github/license/devs-in-tech/DevsInTech" />
9-
<img src="https://img.shields.io/github/forks/devs-in-tech/DevsInTech" />
10-
<img src="https://img.shields.io/github/stars/devs-in-tech/DevsInTech" />
5+
<img src="https://forthebadge.com/images/badges/built-with-love.svg" />
6+
<img src="https://forthebadge.com/images/badges/uses-brains.svg" />
7+
<img src="https://forthebadge.com/images/badges/powered-by-responsibility.svg" />
8+
<br>
9+
<img src="https://img.shields.io/github/repo-size/devs-in-tech/DevsInTech?style=for-the-badge" />
10+
<img src="https://img.shields.io/github/issues/devs-in-tech/DevsInTech?style=for-the-badge" />
11+
<img src="https://img.shields.io/github/issues-closed-raw/devs-in-tech/DevsInTech?style=for-the-badge" />
12+
<img src="https://img.shields.io/github/license/devs-in-tech/DevsInTech?style=for-the-badge" />
13+
14+
<img src="https://img.shields.io/github/issues-pr/devs-in-tech/DevsInTech?style=for-the-badge" />
15+
<img src="https://img.shields.io/github/contributors/devs-in-tech/DevsInTech?style=for-the-badge" />
16+
<img src="https://img.shields.io/github/stars/devs-in-tech/DevsInTech?style=for-the-badge" />
17+
18+
<img src="https://img.shields.io/github/issues-pr-closed-raw/devs-in-tech/DevsInTech?style=for-the-badge" />
19+
<img src="https://img.shields.io/github/forks/devs-in-tech/DevsInTech?style=for-the-badge" />
20+
<img src="https://img.shields.io/github/last-commit/devs-in-tech/DevsInTech?style=for-the-badge" />
21+
</div>
22+
<br>
1123
</div>
1224

1325
# About Us

public/discord.svg

Lines changed: 1 addition & 0 deletions
Loading

public/github.svg

Lines changed: 1 addition & 0 deletions
Loading

public/linkedin.svg

Lines changed: 1 addition & 0 deletions
Loading

public/twitter.svg

Lines changed: 1 addition & 0 deletions
Loading
300 KB
Loading

src/assets/Event/Tapas_sir.png

116 KB
Loading

src/assets/Team/Developer.jpg

46.2 KB
Loading

0 commit comments

Comments
 (0)