Admin Portal - Frontend
Setting up
1 - Install SASS
I recommend using the Dart SASS CLI (latest version of SASS’ CLI) instead of the Live SASS Compiler extension for VSCode, because the latter hasn’t been updated in nearly 2 years. It doesn’t seem to support @use
, for example.
Instructions are available at https://sass-lang.com/install
After you install it, run the command below from the Frontend folder:
sass scss/index.scss css/index.css --watch --color
Now when you edit any of the files in the scss
folder, they will be automatically compiled to css/index.css
(all the style rules will be bundled together, which can then be minified for production).
2 - Set up Laragon to serve the pages
Stop Laragon (if you’re currently running it) and follow the steps below to serve the application with Apache instead of Live Server from VSCode.
- Move the entire project (from the root folder) to your
www
directory -
Go to Preferences (cog button) > Services & Ports > change Apache port to 5500
- Go to Menu >
www
(second submenu from the top) > Switch Document Root > Select another and then choose your Frontend folder
Notice that I have already changed it, that’s why it’s showing C:\laragon\www\Admin-Portal-v2\Frontend
-
Start Laragon. You might be prompted to allow admin access several times (mildly annoying).
-
Navigate to http://localhost:5500/sign_in.php and the application should work.
Now you may open the project (from the root folder or from Frontend) in PHPStorm and start working on it. Check the console for errors and confirm that you’re still successfully fetching data from the API (when you get to the Database page).
Make sure that you have already set up the backend (including the database) and started it as well, by running
dotnet watch run
from the AdminApi folder.
Naming Convention
- Classes : PascalCase, singular
- Tables in database: snake_case, plural
- Properties: camelCase
- Constants: UPPERCASE_SEPARATED_BY_UNDERSCORES