Skip to content

Commit 5ce962c

Browse files
committed
firebase app hosted
1 parent 15f8481 commit 5ce962c

15 files changed

+101
-7
lines changed

Images/flodata.webp

-3.12 KB
Binary file not shown.

Images/profile_image.jpg

-823 KB
Binary file not shown.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
- 📫 How to reach me **pankajkumarmath1@gmail.com**
1313

14-
- 📄 Know about my experiences [Resume](https://pankajcoder1.github.io/Pankajcoder1/Resume.pdf)
14+
- 📄 Know about my experiences [Resume](https://pankajcoder1.github.io/Pankajcoder1/Pankaj_Kumar.pdf)
1515
- 🔥 Visit my portfolio [here](https://pankajcoder1.github.io/Pankajcoder1/)
1616

1717
<h3 align="left">Connect with me:</h3>

Resume.pdf

-50.7 KB
Binary file not shown.

v2/.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "portfolio-4e6e3"
4+
}
5+
}

v2/.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
firebase-debug.log*
8+
firebase-debug.*.log*
9+
10+
# Firebase cache
11+
.firebase/
12+
13+
# Firebase config
14+
15+
# Uncomment this if you'd like others to create their own Firebase project.
16+
# For a team working on the same Firebase project(s), it is recommended to leave
17+
# it commented so all members can deploy to the same project(s) in .firebaserc.
18+
# .firebaserc
19+
20+
# Runtime data
21+
pids
22+
*.pid
23+
*.seed
24+
*.pid.lock
25+
26+
# Directory for instrumented libs generated by jscoverage/JSCover
27+
lib-cov
28+
29+
# Coverage directory used by tools like istanbul
30+
coverage
31+
32+
# nyc test coverage
33+
.nyc_output
34+
35+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
36+
.grunt
37+
38+
# Bower dependency directory (https://bower.io/)
39+
bower_components
40+
41+
# node-waf configuration
42+
.lock-wscript
43+
44+
# Compiled binary addons (http://nodejs.org/api/addons.html)
45+
build/Release
46+
47+
# Dependency directories
48+
node_modules/
49+
50+
# Optional npm cache directory
51+
.npm
52+
53+
# Optional eslint cache
54+
.eslintcache
55+
56+
# Optional REPL history
57+
.node_repl_history
58+
59+
# Output of 'npm pack'
60+
*.tgz
61+
62+
# Yarn Integrity file
63+
.yarn-integrity
64+
65+
# dotenv environment variables file
66+
.env

v2/firebase.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"hosting": {
3+
"site": "pankajkumar",
4+
"public": "public",
5+
"ignore": [
6+
"firebase.json",
7+
"**/.*",
8+
"**/node_modules/**"
9+
]
10+
}
11+
}
File renamed without changes.
2.62 MB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.html renamed to v2/public/index.html

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222

2323
<!-- css -->
24-
<link rel="stylesheet" type="text/css" href="css/index.css">
25-
<link rel="stylesheet" type="text/css" href="css/light_mode.css">
24+
<link rel="stylesheet" type="text/css" href="assest/css/index.css">
25+
<link rel="stylesheet" type="text/css" href="assest/css/light_mode.css">
2626
</head>
2727
<body>
2828
<!-- starting navbar -->
@@ -158,7 +158,7 @@
158158
<div class="container about-div" style="">
159159
<div class="row" style="">
160160
<div class="col-sm col-sm-12 col-md-5 col-xl-5">
161-
<img src="Images/profile_image.jpg" class="img-fluid img-responsive" alt="Profile Image">
161+
<img src="assest/Images/Pankaj_Kumar.jpg" class="img-fluid img-responsive" alt="Profile Image">
162162
</div>
163163
<div class="col-sm col-sm-12 col-md-7 col-xl-7 container about-intro">
164164
<div class="container about-intro-div">
@@ -537,9 +537,21 @@ <h1 class="text-center section-heading">
537537
</a>
538538

539539
<!-- js files added here -->
540-
<script type="text/javascript" src="js/change_mode.js"></script>
541-
<script type="text/javascript" src="js/index.js"></script>
540+
<script type="text/javascript" src="assest/js/change_mode.js"></script>
541+
<script type="text/javascript" src="assest/js/index.js"></script>
542+
543+
<!-- end here -->
544+
545+
<!-- The core Firebase JS SDK is always required and must be listed first -->
546+
<script src="/__/firebase/8.10.0/firebase-app.js"></script>
547+
548+
<!-- TODO: Add SDKs for Firebase products that you want to use
549+
https://firebase.google.com/docs/web/setup#available-libraries -->
550+
<script src="/__/firebase/8.10.0/firebase-analytics.js"></script>
551+
552+
<!-- Initialize Firebase -->
553+
<script src="/__/firebase/init.js"></script>
554+
542555

543-
<!-- end here --->
544556
</body>
545557
</html>

0 commit comments

Comments
 (0)