We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
start-web-server
1 parent b93e53f commit 72dbbedCopy full SHA for 72dbbed
README.md
@@ -64,10 +64,13 @@ cargo build
64
# Start the extenal services
65
docker-compose up -d db s3
66
# Build a sample crate to make sure it works
67
-# This sets up the docs.rs build environment, including installing the nightly
68
-# Rust toolchain. This will take a while the first time but will be cached afterwards.
+# This sets up the docs.rs build environment,
+# including running the migrations and installing the nightly Rust toolchain.
69
+# This will take a while the first time but will be cached afterwards.
70
cargo run -- build crate regex 1.3.1
71
# This starts the web server but does not build any crates.
72
+# It does not automatically run the migrations, so you need to do that manually.
73
+cargo run database migrate
74
cargo run start-web-server
75
```
76
0 commit comments