Configure and Run the Application
Configure the application
The application configuration files are present under the config
directory.
The configuration file read varies with the environment:
Development:
config/development.toml
Sandbox:
config/sandbox.toml
Production:
config/production.toml
Refer to config.example.toml
for all the available configuration options. Refer to development.toml
for the recommended defaults for local development.
Ensure to update the development.toml
file if you opted to use different database credentials as compared to the sample ones included in this guide.
Once you're done with configuring the application, proceed with running the application.
Run the application
Compile and run the application using
cargo
:cargo run
If you are using
nix
, you can compile and run the application usingnix
:nix run
Verify that the server is up and running by hitting the health endpoint:
curl --head --request GET 'http://localhost:8080/health'
If the command returned a
200 OK
status code, proceed with trying out our APIs.
Last updated
Was this helpful?