Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 440 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 440 Bytes

Rust Rocket template with Handlebars templating and SQLite database connection

sqlite3 is required for this repository, but can be changed to any kind of sql pool.

Starting database included in this repository Database.db has one table created with following command:

CREATE TABLE Users(ID integer PRIMARY KEY AUTOINCREMENT, username TEXT NOT NULL UNIQUE, password TEXT NOT NULL);