mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-24 05:18:58 +00:00
29 lines
636 B
Markdown
29 lines
636 B
Markdown
# Run
|
|
|
|
When developing locally, this directory will contain run-time data required for
|
|
the search engine. In a clean check-out, it only contains the tools required to
|
|
bootstrap this directory structure.
|
|
|
|
## Set up
|
|
|
|
While the system is designed to run bare metal in production,
|
|
for local development, you're strongly encouraged to use docker
|
|
or podman.
|
|
|
|
From a fresh to running system, you'll need to do this:
|
|
|
|
From the project root
|
|
```
|
|
$ ./gradlew assemble docker
|
|
|
|
$ run/setup.sh
|
|
|
|
$ docker-compose up -d mariadb
|
|
|
|
$ run/reconvert.sh
|
|
|
|
$ docker-compose up
|
|
```
|
|
|
|
Wait a moment and check out [http://localhost:8080](http://localhost:8080).
|