2015-07-22 01:45:01 -04:00
|
|
|
Vector/Web
|
|
|
|
==========
|
2015-06-09 12:40:42 -04:00
|
|
|
|
2015-07-22 01:45:01 -04:00
|
|
|
Vector is a Matrix web client built using the Matrix React SDK (https://github.com/matrix-org/matrix-react-sdk).
|
2015-06-24 11:33:53 -04:00
|
|
|
|
2015-07-22 01:45:01 -04:00
|
|
|
Getting started
|
|
|
|
===============
|
2015-06-24 12:58:13 -04:00
|
|
|
|
|
|
|
1. Install or update `node.js` so that your `npm` is at least at version `2.0.0`
|
2015-07-28 11:30:01 -04:00
|
|
|
2. Clone the repo: `git clone https://github.com/vector-im/vector-web.git`
|
|
|
|
3. Switch to the SDK directory: `cd vector-web`
|
2015-07-03 10:56:04 -04:00
|
|
|
4. Install the prerequisites: `npm install`
|
2015-10-01 11:02:44 -04:00
|
|
|
5. Start the development builder and a testing server: `npm start`
|
|
|
|
6. Wait a few seconds for the initial build to finish.
|
|
|
|
7. Open http://127.0.0.1:8080/ in your browser to see your newly built Vector.
|
2015-06-24 12:58:13 -04:00
|
|
|
|
2015-10-01 11:02:44 -04:00
|
|
|
Wiht `npm start`, Any changes you make to the source files will cause a rebuild so
|
|
|
|
your changes will show up when you refresh.
|
|
|
|
|
|
|
|
For production use, run `npm run build` to build all the necessary files
|
|
|
|
into the `vector` directory and run your own server.
|
2015-06-24 12:58:13 -04:00
|
|
|
|
2015-07-22 01:45:01 -04:00
|
|
|
Development
|
|
|
|
===========
|
2015-10-01 11:02:44 -04:00
|
|
|
You can work on any of the source files within Vector with the setup above,
|
|
|
|
and your changes will cause an instant rebuild. If you also need to make
|
|
|
|
changes to the react sdk, you can:
|
2015-06-24 12:58:13 -04:00
|
|
|
|
2015-07-03 11:15:23 -04:00
|
|
|
1. Link the react sdk package into the example:
|
2015-10-01 11:02:44 -04:00
|
|
|
`npm link path/to/your/react/sdk`
|
|
|
|
2. Start the development rebuilder in your react SDK directory:
|
|
|
|
`npm start`
|
2015-06-24 11:33:53 -04:00
|
|
|
|
2015-10-01 11:02:44 -04:00
|
|
|
If you add or remove any components from the Vector skin, you will need to rebuild
|
|
|
|
the skin's index by running, `npm run reskindex`.
|
2015-07-07 12:46:06 -04:00
|
|
|
|
2015-09-19 15:17:45 -04:00
|
|
|
Deployment
|
|
|
|
==========
|
|
|
|
|
2015-10-01 11:02:44 -04:00
|
|
|
Just run `npm build` and then mount the `vector` directory on your webserver to
|
|
|
|
actually serve up the app, which is entirely static content.
|
2015-07-07 13:27:34 -04:00
|
|
|
|