Axum-based webserver based on rustdb database, with database browsing, password hashing, database replication, email transmission and timed jobs.
Install Rustif it is not already installed.
Install rustweb using
cargo install rustweb
From a command prompt, change to the the directory where the database is to be stored ( the file will be named rustweb.rustdb ).
Start rustweb using
rustweb 3000
This should start rustweb server, listening on port 3000 ( you can use any available port ).
You should then be able to browse to http://localhost:3000/Menu
From there are links to a Manual, Execute SQL, a list of Schemas and other links.
Initially login security is disabled. To enable it
(1) Edit the function login.hash and change the salt string.
(2) Create a record in login.user.
(3) Use the Logins Menu link to set a password.
(4) Edit the function login.get ( see instructions included there ).
Start Rustweb in the directory (folder) where you want the replicated database stored, specifying the -rep option
For example:
rustweb 2000 --rep https://mydomain.com
If login security has been enabled, you will need to specify login details ( obtained from the login.user table ), for example:
--login "uid=1; hpw=0xaaa023850abbdff839894888dd8e8abbceaaa023855abbdff839894888dd8e8c"
If the database is very large, it may be more practical to use FTP to get an initial copy of the database, otherwise a copy will be fetched automatically.
Replication is enabled by records being inserted in the log.Transaction table.
These records can be periodically deleted, provided that all replication servers are up to date.
Email can be sent using the email schema.
(1) Create a record in email.SmtpServer
(2) Create an email in email.msg
(3) Insert it into email.Queue
(4) Call the builtin function EMAILTX()
If an email cannot be sent, and the error is temporary, it will be inserted into the email.Delayed table and retried later.
Permanent errors are logged in email.SendError
A named SQL function (with no parameters) can be called at a specified time by creating a record in timed.Job.
This is used by the email system to retry temporary email send errors.
USAGE:\
rustweb [OPTIONS]
ARGS:\
OPTIONS:\
-h, --help Print help information\
-i, --ip
crates.io : https://crates.io/crates/rustweb
repository: https://github.com/georgebarwood/Rustweb