44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Markdown
		
	
	
		
			Executable File
		
	
	
	
	
<p align="center">
 | 
						|
<img src="https://git.djeex.fr/Djeex/DjeexLab/raw/branch/main/docs/files/img/global/lab.svg" align="center" width="700">
 | 
						|
 | 
						|
[](https://docu.djeex.fr/) 
 | 
						|
[](https://docu.djeex.fr/) 
 | 
						|
</p>
 | 
						|
 | 
						|
# 🔧 Docs, More Docs
 | 
						|
 | 
						|
**Docu·djeex** is first and foremost a personal project aimed at self-hosting as many everyday services as possible — without relying on proprietary platforms (Google, Apple, Netflix, etc.).  
 | 
						|
This documentation site is built using [Nuxt.js](https://nuxt.com/).
 | 
						|
 | 
						|
This repository contains everything you need to edit pages, apply your changes, and redeploy the site.
 | 
						|
 | 
						|
## Setup
 | 
						|
 | 
						|
Install dependencies:
 | 
						|
 | 
						|
```sh
 | 
						|
npm install
 | 
						|
```
 | 
						|
 | 
						|
## Development Environment (port 3000)
 | 
						|
 | 
						|
```sh
 | 
						|
npm run dev
 | 
						|
```
 | 
						|
 | 
						|
## Generate Static Pages
 | 
						|
 | 
						|
```sh
 | 
						|
npm run generate
 | 
						|
```
 | 
						|
 | 
						|
The HTML files will be generated in the `.output/public` folder and are ready to be deployed on any static-compatible hosting.
 | 
						|
 | 
						|
## Preview Build
 | 
						|
 | 
						|
If you'd like to immediately see the result of your static site build, you can launch a preview server:
 | 
						|
 | 
						|
```sh
 | 
						|
npm run preview
 | 
						|
```
 |