From dc929fb4ebf6ad011d1c3b6152e7629789a3d840 Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Thu, 30 Jun 2022 15:05:34 -0300 Subject: Add (Translation\ES): Information from the README.md file (#743) --- .github/README.md | 34 ++++++++++++++++++++++++++++++++++ .github/README_es.md | 34 ++++++++++++++++++++++++++++++++++ README.md | 31 ------------------------------- 3 files changed, 68 insertions(+), 31 deletions(-) create mode 100644 .github/README.md create mode 100644 .github/README_es.md delete mode 100644 README.md 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). diff --git a/README.md b/README.md deleted file mode 100644 index 6211364..0000000 --- a/README.md +++ /dev/null @@ -1,31 +0,0 @@ -# AzerothCore WIKI - -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). - -- cgit