Merge pull request #1368 from zed-industries/redis

Document using Redis and launch it in `Procfile`
This commit is contained in:
Antonio Scandurra 2022-07-15 15:27:09 +02:00 committed by GitHub
commit c442612b10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 0 deletions

1
.gitignore vendored
View file

@ -8,3 +8,4 @@
/crates/collab/static/styles.css
/vendor/bin
/assets/themes/*.json
dump.rdb

View file

@ -1,2 +1,3 @@
web: cd ../zed.dev && PORT=3000 npx next dev
collab: cd crates/collab && cargo run
redis: redis-server

View file

@ -23,6 +23,12 @@ script/sqlx migrate run
script/seed-db
```
Install Redis:
```
brew install redis
```
Run the web frontend and the collaboration server.
```