mirror of https://github.com/zulip/zulip.git
Fixed markdown links in README and README.dev
[Patched with some tweaks by tabbott]
This commit is contained in:
parent
c8de86894f
commit
fc0a414fe6
|
@ -308,7 +308,7 @@ Now you're going to install Zulip dependencies in the image:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run -itv $(pwd):/srv/zulip -p 80:9991 user/zulipdev /bin/bash
|
docker run -itv $(pwd):/srv/zulip -p 80:9991 user/zulipdev /bin/bash
|
||||||
$ /usr/bin/python /srv/zulip/provision.py --docker
|
$ /usr/bin/python /srv/zulip/provision.py --docker
|
||||||
docker ps -af ancestor=user/zulipdev
|
docker ps -af ancestor=user/zulipdev
|
||||||
docker commit -m "Zulip installed" <container id> user/zulipdev:v2
|
docker commit -m "Zulip installed" <container id> user/zulipdev:v2
|
||||||
```
|
```
|
||||||
|
@ -395,7 +395,8 @@ migrations and then cleanly restaring the server for you).
|
||||||
Running the test suite
|
Running the test suite
|
||||||
======================
|
======================
|
||||||
|
|
||||||
For more details, check out the [detailed testing
|
For more details, especially on how to write tests, check out the
|
||||||
|
[detailed testing
|
||||||
docs](http://zulip.readthedocs.org/en/latest/testing.html).
|
docs](http://zulip.readthedocs.org/en/latest/testing.html).
|
||||||
|
|
||||||
To run all the tests, do this:
|
To run all the tests, do this:
|
||||||
|
@ -447,4 +448,4 @@ Possible testing issues
|
||||||
`do-destroy-rebuild*-database` scripts.
|
`do-destroy-rebuild*-database` scripts.
|
||||||
|
|
||||||
- When building the development environment using Vagrant and the LXC provider, if you encounter permissions errors, you may need to `chown -R 1000:$(whoami) /path/to/zulip` on the host before running `vagrant up` in order to ensure that the synced directory has the correct owner during provision. This issue will arise if you run `id username` on the host where `username` is the user running Vagrant and the output is anything but 1000.
|
- When building the development environment using Vagrant and the LXC provider, if you encounter permissions errors, you may need to `chown -R 1000:$(whoami) /path/to/zulip` on the host before running `vagrant up` in order to ensure that the synced directory has the correct owner during provision. This issue will arise if you run `id username` on the host where `username` is the user running Vagrant and the output is anything but 1000.
|
||||||
This seems to be caused by Vagrant behavior; more information can be found here https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner
|
This seems to be caused by Vagrant behavior; more information can be found [here](https://github.com/fgrehm/vagrant-lxc/wiki/FAQ#help-my-shared-folders-have-the-wrong-owner).
|
||||||
|
|
|
@ -46,7 +46,7 @@ guidelines](http://zulip.readthedocs.org/en/latest/code-style.html#commit-messag
|
||||||
* **Testing**. The Zulip automated tests all run automatically when
|
* **Testing**. The Zulip automated tests all run automatically when
|
||||||
you submit a pull request, but you can also run them all in your
|
you submit a pull request, but you can also run them all in your
|
||||||
development environment following the instructions in the [testing
|
development environment following the instructions in the [testing
|
||||||
section](https://github.com/zulip/zulip#running-the-test-suite) below.
|
docs](https://github.com/zulip/zulip/blob/master/README.dev.md#running-the-test-suite).
|
||||||
|
|
||||||
* **Developer Documentation**. Zulip has a growing collection of
|
* **Developer Documentation**. Zulip has a growing collection of
|
||||||
developer documentation on [Read The Docs](https://zulip.readthedocs.org/).
|
developer documentation on [Read The Docs](https://zulip.readthedocs.org/).
|
||||||
|
|
Loading…
Reference in New Issue