Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/txstate-etc/interact
interact wordpress plugins
https://github.com/txstate-etc/interact
Last synced: about 1 month ago
JSON representation
interact wordpress plugins
- Host: GitHub
- URL: https://github.com/txstate-etc/interact
- Owner: txstate-etc
- Created: 2017-02-10T21:28:08.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-02-19T15:14:35.000Z (almost 5 years ago)
- Last Synced: 2024-11-08T14:48:24.564Z (3 months ago)
- Language: PHP
- Size: 1.44 MB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# interact
interact wordpress pluginsThis repo is to store all the plugins used by the interact server which manages h5p content. Licenses for each of the included plugins should be listed within thier corresponding directory along with their code. The h5p repo at https://github.com/h5p/h5p-wordpress-plugin is setup as a submodule within the plugins directory. The wpcas plugin was copied right into the repo and not much is expected to change with it.
Example of how to update h5p WordPress plugin:
```
git checkout master
git submodule update
cd plugins/h5p
git pull
# Substitute latest tag that works with current WordPress instance.
# at this point it is h5p v1.9.2 for WordPress v4.8.2
git checkout 1.9.2
cd ../../
git add .
git commit -m 'h5p 1.9.2'
git push
git checkout qual
git merge master
git push origin qual
# Deploy and perform qual testing.
git checkout prod
git merge qual
git push origin prod
```