diff options
| author | Walter Pagani <paganiwalter@gmail.com> | 2022-06-30 15:05:34 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-30 20:05:34 +0200 |
| commit | dc929fb4ebf6ad011d1c3b6152e7629789a3d840 (patch) | |
| tree | 93118f003025509ae5645f095bb84c052abfd2f3 /.github | |
| parent | d8d4181a8ddb5ad5a2bc7440089466fa726c431c (diff) | |
| download | wiki-dc929fb4ebf6ad011d1c3b6152e7629789a3d840.tar.gz wiki-dc929fb4ebf6ad011d1c3b6152e7629789a3d840.tar.bz2 wiki-dc929fb4ebf6ad011d1c3b6152e7629789a3d840.zip | |
Add (Translation\ES): Information from the README.md file (#743)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/README.md | 34 | ||||
| -rw-r--r-- | .github/README_es.md | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/.github/README.md b/.github/README.md new file mode 100644 index 0000000..4210c06 --- /dev/null +++ b/.github/README.md @@ -0,0 +1,34 @@ +# AzerothCore WIKI + +Read in: [English :gb:](README.md) [Spanish :es:](README_es.md) + +Wiki for the AzerothCore Project available here: http://azerothcore.github.io/wiki + +## How to install locally (development) + +### With [docker-compose](https://docs.docker.com/compose/install/) + +1. install [docker-compose](https://docs.docker.com/compose/install/) +2. run `docker-compose up github-wiki-theme` +3. the website will be ready on `http://127.0.0.1:4000/` + +### Without docker compose + +First of all install the [ruby development environment](https://jekyllrb.com/docs/installation/) using [this guide](https://jekyllrb.com/docs/installation/). + +After that install `bundler` using gem and run `bundler install`: + +``` +$ gem install bundler +$ bundle install +``` + +Well, now you can run locally the app using: + +``` +bundle exec jekyll serve +``` + +If everything succeds, you can visit your web app at `http://127.0.0.1:4000/`. + +Any problems? [Open a issue](https://github.com/azerothcore/wiki/issues/new). diff --git a/.github/README_es.md b/.github/README_es.md new file mode 100644 index 0000000..31b9950 --- /dev/null +++ b/.github/README_es.md @@ -0,0 +1,34 @@ +# AzerothCore WIKI + +Leer en: [Ingles :gb:](README.md) [Español :es:](README_es.md) + +Wiki para el proyecto AzerothCore disponible aquí: http://azerothcore.github.io/wiki/es + +## Cómo instalar localmente (desarrollo) + +### Con [docker-compose](https://docs.docker.com/compose/install/) + +1. Instalar [docker-compose](https://docs.docker.com/compose/install/) +2. Ejecutar `docker-compose up github-wiki-theme` +3. El sitio web estará listo el `http://127.0.0.1:4000/` + +### Sin docker compose + +En primer lugar, instale el [entorno de desarrollo ruby](https://jekyllrb.com/docs/installation/) utilizando [esta guía](https://jekyllrb.com/docs/installation/). + +Después de eso, instale `bundler` usando la gema y ejecute `bundler install`: + +``` +$ gem install bundler +$ bundle install +``` + +Pues bien, ahora puedes ejecutar localmente la aplicación utilizando: + +``` +bundle exec jekyll serve +``` + +Si todo ha ido bien, puedes visitar tu aplicación web en `http://127.0.0.1:4000/`. + +¿Algún problema? [Abrir una incidencia](https://github.com/azerothcore/wiki/issues/new). |
