Skip to content

Commit fb8935e

Browse files
committed
Resolve README conflict
1 parent 152b420 commit fb8935e

File tree

5 files changed

+2562
-1
lines changed

5 files changed

+2562
-1
lines changed

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Production builds
8+
dist/
9+
build/
10+
11+
# Environment variables
12+
.env
13+
.env.local
14+
.env.development.local
15+
.env.test.local
16+
.env.production.local
17+
18+
# IDE and editor files
19+
.vscode/
20+
.idea/
21+
*.swp
22+
*.swo
23+
*~
24+
25+
# OS generated files
26+
.DS_Store
27+
.DS_Store?
28+
._*
29+
.Spotlight-V100
30+
.Trashes
31+
ehthumbs.db
32+
Thumbs.db
33+
34+
# Logs
35+
logs
36+
*.log
37+
38+
# Temporary files
39+
*.tmp
40+
*.temp
41+
42+
# Cache directories
43+
.cache/
44+
.parcel-cache/
45+
46+
# Optional npm cache directory
47+
.npm
48+
49+
# Optional eslint cache
50+
.eslintcache
51+
52+
# Microbundle cache
53+
.rpt2_cache/
54+
.rts2_cache_cjs/
55+
.rts2_cache_es/
56+
.rts2_cache_umd/
57+
58+
# Optional REPL history
59+
.node_repl_history
60+
61+
# Output of 'npm pack'
62+
*.tgz
63+
64+
# Yarn Integrity file
65+
.yarn-integrity
66+
67+
# parcel-bundler cache (https://parceljs.org/)
68+
.parcel-cache
69+
70+
# Next.js build output
71+
.next
72+
73+
# Nuxt.js build / generate output
74+
.nuxt
75+
dist
76+
77+
# Gatsby files
78+
.cache/
79+
public
80+
81+
# Storybook build outputs
82+
.out
83+
.storybook-out
84+
85+
# Temporary folders
86+
tmp/
87+
temp/
88+
89+
# Editor directories and files
90+
!.vscode/extensions.json
91+
.history/*
92+
93+
# Local Netlify folder
94+
.netlify

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# BadibossPy.github.io
1+
# Badre Abderrahmane Alloul — Portfolio
2+
3+
Minimal, production-focused portfolio for geospatial data science, computational hydrology, and energy systems. Deployed on GitHub Pages.
4+
5+
**Live site:** https://badibosspy.github.io
6+
**Profile:** https://github.com/BadibossPy
7+
**LinkedIn:** https://linkedin.com/in/badre-abderrahmane-alloul
8+
9+
10+
## Structure
11+
- `index.html` — content
12+
- `styles.css` — styling
13+
- `script.js` — interactions
14+
- `logos/` — organization marks
15+
16+
## Local preview
17+
```bash
18+
git clone https://github.com/BadibossPy/BadibossPy.github.io.git
19+
cd BadibossPy.github.io
20+
start index.html # or open in your browser
21+
```
22+
23+
## Deployment
24+
GitHub Pages builds from `main` of `BadibossPy.github.io`. Push to publish:
25+
```bash
26+
git add .
27+
git commit -m "Update portfolio"
28+
git push origin main
29+
```

0 commit comments

Comments
 (0)