Open source software you can use to create a beautiful website, blog, or app https://github.com/wordpress/wordpress
This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Luke Murphy b8665532d6
Remove vars
2020-05-15 23:22:43 +02:00
params Drop params into own folder 2020-05-15 23:22:42 +02:00
.envrc.sample Init this new WP setup 2020-05-03 00:21:33 +02:00
LICENSE Init this new WP setup 2020-05-03 00:21:33 +02:00
README.md Running sprint at CNABing wordpress 2020-05-15 23:22:42 +02:00
docker-compose.prod.yml Remove vars 2020-05-15 23:22:43 +02:00
docker-compose.yml Use strings 2020-05-15 23:22:43 +02:00
renovate.json Add renovate.json 2020-05-07 10:31:19 +00:00
requirements.txt Init this new WP setup 2020-05-03 00:21:33 +02:00

README.md

wordpress

https://wordpress.org

Development

$ git clone https://git.autonomic.zone/autonomic-cooperative/wordpress && cd wordpress
$ python3 -m venv .venv && source .venv/bin/activate
$ pip install -r requirements.txt
$ docker-compose up

Then visit the new Wordpress site.

http://localhost:8010

On the first run, you'll have to wait some seconds for the database to initialise before running through the initial installation. We don't make use of something like wait-for-it because the depends_on stanza makes Docker swarm wait for it to come up on the production deploy. So, we can just avoid doing this altogether for the development workflow to save ourselves work.