mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Document database setup and fix issue in script/seed-db
Co-Authored-By: Max Brunsfeld <maxbrunsfeld@gmail.com>
This commit is contained in:
parent
8937d877e3
commit
13ed9dc1f1
@ -23,6 +23,14 @@ cd ..
|
|||||||
git clone https://github.com/zed-industries/zed.dev
|
git clone https://github.com/zed-industries/zed.dev
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Make sure your local database is created, migrated, and seeded with initial data. Install [Postgres](https://postgresapp.com), then from the `zed` repository root, run:
|
||||||
|
|
||||||
|
```
|
||||||
|
script/sqlx database create
|
||||||
|
script/sqlx migrate run
|
||||||
|
script/seed-db
|
||||||
|
```
|
||||||
|
|
||||||
Run `zed.dev` and the collaboration server.
|
Run `zed.dev` and the collaboration server.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -6,18 +6,9 @@ use time::{Duration, OffsetDateTime};
|
|||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
#[path = "../db.rs"]
|
#[path = "../db.rs"]
|
||||||
mod db;
|
mod db;
|
||||||
#[path = "../env.rs"]
|
|
||||||
mod env;
|
|
||||||
|
|
||||||
#[async_std::main]
|
#[async_std::main]
|
||||||
async fn main() {
|
async fn main() {
|
||||||
if let Err(error) = env::load_dotenv() {
|
|
||||||
log::error!(
|
|
||||||
"error loading .env.toml (this is expected in production): {}",
|
|
||||||
error
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut rng = StdRng::from_entropy();
|
let mut rng = StdRng::from_entropy();
|
||||||
let database_url = std::env::var("DATABASE_URL").expect("missing DATABASE_URL env var");
|
let database_url = std::env::var("DATABASE_URL").expect("missing DATABASE_URL env var");
|
||||||
let db = Db::new(&database_url, 5)
|
let db = Db::new(&database_url, 5)
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
cd crates/server
|
||||||
|
|
||||||
|
# Export contents of .env.toml
|
||||||
|
eval "$(cargo run --bin dotenv)"
|
||||||
|
|
||||||
cargo run --package=zed-server --features seed-support --bin seed
|
cargo run --package=zed-server --features seed-support --bin seed
|
||||||
|
Loading…
Reference in New Issue
Block a user