File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ mkdir -p ignored/cratesfyi-prefix/crates.io-index
64
64
cargo build
65
65
# Start the external services
66
66
docker-compose up -d db s3
67
- # anything that doesn't run via docker-compose needs the settings defined in
68
- # .env. Either via `. .env` as below, or via any dotenv shell integration.
69
- . .env
67
+ # anything that doesn't run via docker-compose needs the settings defined in
68
+ # .env. Either via `. ./. env` as below, or via any dotenv shell integration.
69
+ . ./. env
70
70
# Setup the database you just created
71
71
cargo run -- database migrate
72
72
# Build a sample crate to make sure it works
@@ -79,7 +79,7 @@ cargo run -- build add-essential-files
79
79
# It does not automatically run the migrations, so you need to do that manually (see above).
80
80
cargo run -- start-web-server
81
81
# If you want the server to automatically restart when code or templates change
82
- # you can use `cargo-watch`:
82
+ # you can use `cargo-watch`:
83
83
cargo watch -x " run -- start-web-server"
84
84
```
85
85
@@ -215,7 +215,7 @@ If you want to explore or edit database manually, you can connect to the databas
215
215
with the ` psql ` command.
216
216
217
217
``` sh
218
- . .env
218
+ . ./. env
219
219
psql $DOCSRS_DATABASE_URL
220
220
```
221
221
You can’t perform that action at this time.
0 commit comments