activity log angular
This project is a simple activity logger displayed in a grid.
DEMO
Data is refreshed daily
This project uses:
- Bootstrap 5
- Angular 15
- PHP 7.4
- MySQL 5.6
QUICK START
- Clone repo activity-log-angular
- Clone repo activity-log-service into a web server directory that supports php
- Create a MySQL database and import the setup.sql script
- Create a db_connect.php file in the root of the project folder
- Paste the following code into the file and enter your MySQL credentials:
<?php define('DB_USER', 'username'); define('DB_PASSWORD', 'password'); define('DB_HOST', 'localhost'); define('DB_NAME', 'db_name'); ?> - Navigate to the url (ex: http://localhost/activity-log/) and start logging
Enjoy!