🏗️ Init: Initialisation de la structure du nouveau portfolio…)

This commit is contained in:
2026-01-22 16:35:43 +01:00
parent dd4ed8c0e4
commit e2cdf70f66
15 changed files with 100 additions and 0 deletions

14
.env.example Normal file
View File

@@ -0,0 +1,14 @@
# Application
APP_ENV=development
APP_DEBUG=true
APP_URL=http://localhost:8000
# reCAPTCHA v3
RECAPTCHA_SITE_KEY=your_site_key_here
RECAPTCHA_SECRET_KEY=your_secret_key_here
# Contact Email
CONTACT_EMAIL=contact@example.com
# Sécurité
APP_SECRET=your_random_secret_key_here

28
.gitignore vendored Normal file
View File

@@ -0,0 +1,28 @@
# Environment variables
.env
# Dependencies
vendor/
node_modules/
# Logs
logs/*.log
# Generated CSS
assets/css/output.css
# IDE
.idea/
.vscode/
*.swp
*.swo
# Environment
old/
docs/
_h5ai/
.*/
# OS
.DS_Store
Thumbs.db

0
api/.gitkeep Normal file
View File

0
assets/css/.gitkeep Normal file
View File

0
assets/fonts/.gitkeep Normal file
View File

View File

0
assets/js/.gitkeep Normal file
View File

9
composer.json Normal file
View File

@@ -0,0 +1,9 @@
{
"name": "portfolio/website",
"description": "Portfolio développeur web",
"type": "project",
"require": {
"php": ">=8.0",
"vlucas/phpdotenv": "^5.6"
}
}

0
data/.gitkeep Normal file
View File

0
includes/.gitkeep Normal file
View File

11
index.php Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Skycel</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>

5
package-lock.json generated Normal file
View File

@@ -0,0 +1,5 @@
{
"name": "portfolio-v0.1_scss",
"version": "0.1.0",
"lockfileVersion": 1
}

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "portfolio-v0.1_scss",
"version": "0.1.0",
"description": "Skycel's portfolio",
"main": "index.js",
"scripts": {
"compile": "sass ./public/assets/scss/style.scss ./public/assets/css/style.css --no-source-map",
"watch": "sass ./public/assets/scss/style.scss ./public/assets/css/style.css -watch --no-source-map",
"build": "sass ./public/assets/css/style.css ./public/assets/css/style.min.css --style=compressed --no-source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skycel9/Portfolio.git"
},
"keywords": [
"portfolio",
"development",
"Skycel9"
],
"author": "Skycel9",
"license": "ISC",
"bugs": {
"url": "https://github.com/Skycel9/Portfolio/issues"
},
"homepage": "https://github.com/Skycel9/Portfolio",
"dependencies": {},
"prettier": {
"ignore": [
"**/*.min.js",
"**/*.min.css"
]
}
}

0
pages/.gitkeep Normal file
View File

0
templates/.gitkeep Normal file
View File