diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f10308d..a0ae14b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -22,6 +22,7 @@ }, "args": [ "build", + "--configuration=development", "--base-href=http://localhost:5000" ], "problemMatcher": "$msCompile" diff --git a/database/mistox.sql b/database/mistox.sql index cb19208..fff0eef 100755 --- a/database/mistox.sql +++ b/database/mistox.sql @@ -1,20 +1,6 @@ CREATE DATABASE IF NOT EXISTS `mistox`; USE `mistox`; -CREATE TABLE IF NOT EXISTS `Account` ( - `ID` int(11) NOT NULL AUTO_INCREMENT, - `UserName` varchar(60) DEFAULT NULL, - `Email` varchar(60) DEFAULT NULL, - `EmailVerified` tinyint(4) DEFAULT NULL, - `PasswordHash` varchar(100) DEFAULT NULL, - `FailedPasswordLock` tinyint(4) DEFAULT NULL, - `PasswordAttempts` int(11) DEFAULT NULL, - `CurrentPasswordAttempts` int(11) DEFAULT NULL, - `Role` varchar(45) DEFAULT NULL, - `EmailToken` varchar(45) DEFAULT NULL, - PRIMARY KEY (`ID`) -) AUTO_INCREMENT=1; - CREATE TABLE IF NOT EXISTS `Product` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Name` varchar(45) DEFAULT NULL, @@ -60,29 +46,4 @@ CREATE TABLE IF NOT EXISTS `Receipt` ( `TaxAmount` int(11) DEFAULT NULL, `TotalCost` int(11) DEFAULT NULL, PRIMARY KEY (`AccountID`,`ProductID`,`ReceiptID`) -); - -INSERT INTO Account ( - ID, - UserName, - Email, - EmailVerified, - PasswordHash, - FailedPasswordLock, - PasswordAttempts, - CurrentPasswordAttempts, - Role, - EmailToken -) VALUES ( - 1, - 'admin', - 'admin@mistox.com', - 1, - '$2a$11$0UeWLLqTXe3FG161QVuI0OQJ9rulspUpMG581DI6KSzDXBbFKd00S', - 1, - 1, - 5, - 0, - 'Admin', - '' ); \ No newline at end of file diff --git a/src/MistoxWebsite.Client/src/app/app.html b/src/MistoxWebsite.Client/src/app/app.html index 7834107..ad13f46 100644 --- a/src/MistoxWebsite.Client/src/app/app.html +++ b/src/MistoxWebsite.Client/src/app/app.html @@ -41,13 +41,18 @@
Welcome to Mistox LLC. A project and hobby of Derek Holloway.
-I am an indi-developer who has been making small projects since I was 13. I originally learned lua and spent 4 years mastering it. Then I moved onto C# which is my preferred language
-My programming catalog consist of C#, Lua, SQL, C++, C, and JavaScript in the order of knowledge from best to passiable.
-Im currently in college for computer sciences and should honestly be doing that instead of this but I find working on this website and hobby games to be way more enjoyable.
-I would love to learn how to use Blender in order to make all the models for my games but with the amount of work ive already made for myself im going to hold off for now.
-This website and everything on it are the long countless hours of my time and motivation to create something that I can be proud of and share that with the world.
-So if you would like to support me as a small creator please feel free to leave a donation from on the store page. It would means a lot to me.
-For the nerds out there, this website is a blazor webassembly app, hosted on an ubuntu webserver, with a mysql backend.
-All the passwords are encrypted using bcrypt for your safety and all the data is only allowed through SSL.
-After you make your account. All the data in the database is easily accessable through the account settings and
-you can delete your account at any time. Including all your data with it so there is no risk.
-I wont show ads and never will and I refuse to use trackers on this site.
-If you have any questions, concerns, or would like to suggest a feature, bug-fix, or request to help. Please feel
-free to reach out to me at derek@mistox.net
- - -