mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-10 01:05:59 +01:00
fix: supprimer les sections obsolètes sur l'ajout de contenu dans le README.md
This commit is contained in:
81
README.md
81
README.md
@@ -18,10 +18,6 @@ My professional portfolio built with modern Nuxt.js technologies, showcasing pro
|
|||||||
- [Features](#-features)
|
- [Features](#-features)
|
||||||
- [Tech Stack](#️-tech-stack)
|
- [Tech Stack](#️-tech-stack)
|
||||||
- [Project Structure](#-project-structure)
|
- [Project Structure](#-project-structure)
|
||||||
- [Adding Content](#-adding-content)
|
|
||||||
- [Projects](#projects)
|
|
||||||
- [Writings](#writings)
|
|
||||||
- [Uses Page](#uses-page)
|
|
||||||
- [Integrations](#-integrations)
|
- [Integrations](#-integrations)
|
||||||
- [License](#-license)
|
- [License](#-license)
|
||||||
- [Contact](#-contact)
|
- [Contact](#-contact)
|
||||||
@@ -60,98 +56,23 @@ My professional portfolio built with modern Nuxt.js technologies, showcasing pro
|
|||||||
```
|
```
|
||||||
├── assets/ # Static assets like global styles
|
├── assets/ # Static assets like global styles
|
||||||
├── components/ # Vue components
|
├── components/ # Vue components
|
||||||
├── content/ # Markdown content for the portfolio
|
|
||||||
│ ├── projects/ # Portfolio projects
|
|
||||||
│ ├── writings/ # Writings
|
|
||||||
│ └── uses/ # Uses page items
|
|
||||||
├── layouts/ # Page layouts
|
├── layouts/ # Page layouts
|
||||||
├── pages/ # Application pages
|
├── pages/ # Application pages
|
||||||
├── public/ # Public static files
|
├── public/ # Public static files
|
||||||
│ ├── projects/ # Projects images
|
|
||||||
│ └── writings/ # Writings images
|
|
||||||
├── server/ # Server API routes
|
├── server/ # Server API routes
|
||||||
├── utils/ # Utility functions
|
|
||||||
├── .env.example # Example environment variables
|
├── .env.example # Example environment variables
|
||||||
├── nuxt.config.ts # Nuxt configuration
|
├── nuxt.config.ts # Nuxt configuration
|
||||||
├── package.json # Dependencies and scripts
|
├── package.json # Dependencies and scripts
|
||||||
└── README.md # Project documentation
|
└── README.md # Project documentation
|
||||||
```
|
```
|
||||||
|
|
||||||
## 🍱 Adding Content
|
|
||||||
|
|
||||||
### Projects
|
|
||||||
|
|
||||||
1. Create a new `.md` file in the `/content/projects/` directory
|
|
||||||
2. Follow the structure of existing projects:
|
|
||||||
|
|
||||||
```md
|
|
||||||
---
|
|
||||||
---
|
|
||||||
slug: project-slug
|
|
||||||
title: Project Title
|
|
||||||
description: A brief description of the project
|
|
||||||
publishedAt: YYYY/MM/DD
|
|
||||||
readingTime: 1
|
|
||||||
cover: project-slug/cover.png
|
|
||||||
tags:
|
|
||||||
- web
|
|
||||||
---
|
|
||||||
|
|
||||||
## Project content goes here
|
|
||||||
|
|
||||||
Detailed description and information about the project.
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Add related project images to `/public/projects/project-slug/`
|
|
||||||
|
|
||||||
### Writings
|
|
||||||
|
|
||||||
1. Create a new `.md` file in the `/content/writings/` directory
|
|
||||||
2. Follow the structure of existing projects:
|
|
||||||
|
|
||||||
```md
|
|
||||||
---
|
|
||||||
slug: article-slug
|
|
||||||
title: The title of the article
|
|
||||||
description: A brief description of the article
|
|
||||||
readingTime: 1
|
|
||||||
publishedAt: YYYY/MM/DD
|
|
||||||
cover: article-slug/cover.png
|
|
||||||
tags:
|
|
||||||
- tag1
|
|
||||||
- tag2
|
|
||||||
- tag3
|
|
||||||
---
|
|
||||||
|
|
||||||
## Writing content goes here
|
|
||||||
|
|
||||||
Detailed description and information about the article.
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Add related writing images to `/public/writings/article-slug/`
|
|
||||||
|
|
||||||
### Uses Page
|
|
||||||
|
|
||||||
Add new items to the `/content/uses/` directory following the existing pattern:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"name": "Name of the item",
|
|
||||||
"description": {
|
|
||||||
"en": "Item description in English",
|
|
||||||
"fr": "Item description in French",
|
|
||||||
"es": "Item description in Spanish"
|
|
||||||
},
|
|
||||||
"category": "Item category name"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## 🔌 Integrations
|
## 🔌 Integrations
|
||||||
|
|
||||||
- **WakaTime** - Track coding time and statistics
|
- **WakaTime** - Track coding time and statistics
|
||||||
- **Discord** - Display real-time Discord status
|
- **Discord** - Display real-time Discord status
|
||||||
- **Nuxt Studio** - Headless CMS for content management
|
- **Nuxt Studio** - Headless CMS for content management
|
||||||
- **Nuxt i18n** - Internationalization support
|
- **Nuxt i18n** - Internationalization support
|
||||||
|
- **NuxtHub** - CI/CD and deployment
|
||||||
|
|
||||||
## 📄 License
|
## 📄 License
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user