README, Docs: Removed unnecessary actions

Submodules were removed anyway
This commit is contained in:
Ilya Prokopenko 2021-12-24 16:28:32 +07:00
parent 54963cfafc
commit a95b7e571a
No known key found for this signature in database
GPG key ID: 7736BBBB05F14A56
3 changed files with 3 additions and 5 deletions

0
.gitmodules vendored
View file

View file

@ -10,7 +10,7 @@ To be honest, we don't even know whether it even works. However, this version is
Please use the master branch, as it has the most changes. Please use the master branch, as it has the most changes.
Updating the source code is done with this command: `git pull --recurse-submodules` Updating the source code is done with this command: `git pull`
## Instances ## Instances
@ -29,7 +29,7 @@ If you want, you can add your instance to the list above so that people can regi
* PHP 8 has **not** yet been tested, so you should not expect it to work. * PHP 8 has **not** yet been tested, so you should not expect it to work.
2. Install [commitcaptcha](https://github.com/openvk/commitcaptcha) and OpenVK as Chandler extensions like this: 2. Install [commitcaptcha](https://github.com/openvk/commitcaptcha) and OpenVK as Chandler extensions like this:
``` ```
git clone --recursive https://github.com/openvk/openvk /path/to/chandler/extensions/available/openvk git clone https://github.com/openvk/openvk /path/to/chandler/extensions/available/openvk
git clone https://github.com/openvk/commitcaptcha /path/to/chandler/extensions/available/commitcaptcha git clone https://github.com/openvk/commitcaptcha /path/to/chandler/extensions/available/commitcaptcha
``` ```
3. And enable them: 3. And enable them:
@ -44,8 +44,6 @@ ln -s /path/to/chandler/extensions/available/openvk /path/to/chandler/extensions
8. Move to `Web/static/js` and execute `yarn install` 8. Move to `Web/static/js` and execute `yarn install`
9. Set `openvk` as your root app in `chandler.yml` 9. Set `openvk` as your root app in `chandler.yml`
**Note**: If OVK submodules were not downloaded beforehand (i.e. `--recursive` was not used during cloning), this command *must be* executed in the `openvk` folder: `git submodule update --init`
Once you are done, you can login as a system administrator on the network itself (no registration required): Once you are done, you can login as a system administrator on the network itself (no registration required):
* **Login**: `admin@localhost.localdomain6` * **Login**: `admin@localhost.localdomain6`
* **Password**: `admin` * **Password**: `admin`

View file

@ -154,7 +154,7 @@ composer2 install
```bash ```bash
cd .. cd ..
git clone --recursive https://github.com/openvk/openvk.git git clone https://github.com/openvk/openvk.git
cd openvk/ cd openvk/
composer2 install composer2 install
cd Web/static/js cd Web/static/js