Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amaurycarrade/outils.carrade.eu
Petits outils d'Amaury Carrade. Anciennement site principal. [À jour. L'a été. Un jour.]
https://github.com/amaurycarrade/outils.carrade.eu
bukkit composer highlighter jquery-plugin minecraft personal-website php redirects redirects-search redirects-tracker service tea tools uploader
Last synced: 19 days ago
JSON representation
Petits outils d'Amaury Carrade. Anciennement site principal. [À jour. L'a été. Un jour.]
- Host: GitHub
- URL: https://github.com/amaurycarrade/outils.carrade.eu
- Owner: AmauryCarrade
- License: other
- Created: 2012-05-19T17:50:15.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-11-19T11:44:31.000Z (about 2 years ago)
- Last Synced: 2024-05-01T20:30:46.843Z (8 months ago)
- Topics: bukkit, composer, highlighter, jquery-plugin, minecraft, personal-website, php, redirects, redirects-search, redirects-tracker, service, tea, tools, uploader
- Language: PHP
- Homepage: https://outils.carrade.eu
- Size: 4.93 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [amaury.carrade.eu](https://amaury.carrade.eu)
Repository for my website. License: CeCILL-B.
## Installation & update
This website is created using Silex, and the dependencies are managed by Composer.
### Installation
1. Clone the repository.
```bash
git clone --recursive https://github.com/AmauryCarrade/Website.git
```
2. [Install Composer](https://getcomposer.org).
3. Install the dependencies.
```bash
php composer.phar install -a
```
4. Setup URL rewriting like in the `.htaccess` file in this repository, basically redirecting all non-existant files to `/index.php`, to avoid URLs like `root/index.php/path.html`.The `/web/` directory must be exposed by the webserver.
For the chat highlighter ([`/chat_highlighter`](https://amaury.carrade.eu/chat_highlighter)) to work, you'll have to install the submodules (`git submodule init`), have the `exec` PHP function enabled in your settings, and have Python 3.3 or later available on your system through the `python3` command.
### Update
1. Update the repository.
```bash
git pull
```
2. Update the dependencies and the optimized autoloader.```bash
php composer.phar install -a
```