Update README.md
This commit is contained in:
parent
d902d40e6e
commit
20bbe9b553
BIN
.github/FunctionProject.png
vendored
Normal file
BIN
.github/FunctionProject.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
79
README.md
79
README.md
@ -1,12 +1,77 @@
|
||||
# FunctionProject
|
||||
![Badge Status](https://cloud.divlo.fr/public_files/others/Trash/under_dev.svg)
|
||||
<h1 align="center"><a href="https://function.divlo.fr/">FunctionProject</a></h1>
|
||||
|
||||
[À propos de Divlo](https://divlo.fr/) | [Youtube](https://www.youtube.com/c/Divlo) | [Twitch](https://www.twitch.tv/divlo) | [Twitter](https://twitter.com/Divlo_FR) | [E-mail](mailto:contact@divlo.fr)
|
||||
<p align="center">
|
||||
<strong>Apprenez la programmation grâce à l'apprentissage par projet alias fonction.</strong>
|
||||
</p>
|
||||
|
||||
## À propos de FunctionProject
|
||||
[FunctionProject](https://function.divlo.fr/) est un projet créé par [Divlo](https://divlo.fr/) qui a pour but de rassembler plein de mini-programmes permettant de faire plusieurs choses comme **savoir la météo**, générer un **nombre aléatoire**, etc.
|
||||
<p align="center">
|
||||
<a href="./LICENSE"><img src="https://img.shields.io/badge/licence-MIT-blue.svg" alt="Licence MIT"/></a>
|
||||
<img src="https://img.shields.io/github/repo-size/Divlo/FunctionProject" alt="Repo Size">
|
||||
<a href="https://github.com/Divlo/FunctionProject/commits/master"><img src="https://img.shields.io/github/commit-activity/m/Divlo/FunctionProject" alt="Commit Activity"></a>
|
||||
<a href="https://github.com/Divlo/FunctionProject/graphs/contributors"><img src="https://img.shields.io/github/contributors/Divlo/FunctionProject" alt="Contributors"></a>
|
||||
<img src="https://img.shields.io/github/stars/Divlo/FunctionProject?style=social" alt="Stars">
|
||||
<br/> <br/>
|
||||
<a href="https://function.divlo.fr/"><img src="./.github/FunctionProject.png" alt="FunctionProject" /></a>
|
||||
</p>
|
||||
|
||||
Le projet est disponible sur [function.divlo.fr](https://function.divlo.fr/).
|
||||
## ⚙️ À propos
|
||||
|
||||
**FunctionProject** regroupe plein de **fonctions** sous différentes catégories. Chaque fonction dispose d'une partie "**Utilisation**", et d'une partie "**Article**" pour expliquer le code de celle-çi (le plus souvent, le code est rédigé en **Javascript**).
|
||||
|
||||
En plus de présenter des fonctions, FunctionProject est un **blog** ce qui permet la publication d'article à propos du **développement web** et plus généralement de la **programmation informatique**.
|
||||
|
||||
Si vous aimez le projet, vous pouvez aider à **le faire connaître** en utilisant [#FunctionProject](https://twitter.com/hashtag/FunctionProject) sur **Twitter**. 🐦
|
||||
|
||||
Le projet est disponible sur function.divlo.fr.
|
||||
|
||||
## 🚀 Open Source
|
||||
|
||||
Le partage est essentiel afin de progresser, l'**Open Source** permet l'entraide et le **partage de connaissance** entre développeurs.
|
||||
|
||||
Si vous voulez **contribuer**, avant toute chose écrivait une **"[issue](https://github.com/Divlo/FunctionProject/issues)" sur GitHub** à propos des changements que vous voulez apporter et on pourra en **discuter avec grand plaisir**. 😉
|
||||
|
||||
## 🌐 Installation
|
||||
|
||||
**Note :** En installant, la version locale vous n'aurez pas accès aux données des fonctions etc. Seulement une **base de donnée vide**.
|
||||
|
||||
### Prérequis :
|
||||
|
||||
- NodeJS (et npm) → version récente
|
||||
- Base de donnée MySQL → J'utilise Wamp ce qui me permet d'avoir phpmyadmin.
|
||||
|
||||
### Commandes (à suivre dans l'ordre) :
|
||||
|
||||
```sh
|
||||
# Cloner le projet
|
||||
git clone https://github.com/Divlo/FunctionProject.git FunctionProject
|
||||
|
||||
# Aller à la racine du projet
|
||||
cd FunctionProject
|
||||
|
||||
# Installer les packages/dépendances
|
||||
cd ./api
|
||||
npm install
|
||||
cd ../website
|
||||
npm install
|
||||
```
|
||||
|
||||
Vous devrez ensuite configurer l'API en créant un fichier `.env` à la racine du dossier `/api` et prendre exemple du fichier `.env.example` avec votre configuration.
|
||||
|
||||
### Lancer l'environnement de développement :
|
||||
|
||||
Dans deux terminals séparés :
|
||||
|
||||
- Lancer le front-end en allant dans `/website`
|
||||
```sh
|
||||
npm run dev # front-end lancé sur http://localhost:3000
|
||||
```
|
||||
- Lancer l'api en allant dans `/api`
|
||||
```sh
|
||||
npm run dev # API lancé sur http://localhost:8080
|
||||
```
|
||||
|
||||
Enjoy! 😃
|
||||
|
||||
## 📄 Licence
|
||||
|
||||
## Licence
|
||||
Ce projet est sous licence MIT - voir le fichier [LICENSE](./LICENSE) pour plus de détails.
|
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
@ -4,7 +4,8 @@
|
||||
"description": "Backend REST API for FunctionProject",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"start": "nodemon app.js"
|
||||
"start": "node app.js",
|
||||
"dev": "nodemon app.js"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "Divlo",
|
||||
|
Reference in New Issue
Block a user