Job Tracker is a web app created using HTML, CSS, PHP, and MySQL. Users can login / register and track how many jobs they applied to for a recruiting season.
Homebrew is a package manager for macOS. Open Terminal and run:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"Once Homebrew is installed, install PHP
brew install phpbrew install mysql
brew install --cask mysqlworkbench
Start the mySQL Service
brew services start mysql
Verify its working
mysql -u root -p
CREATE DATABASE job_tracker;
At the top of your query, please type
use job_tracker
Then go into root of this repo and copy structure of the tables in Job_Listing.sql. The table creation should be under "use job_tracker"
touch .env
Then only add these 4 lines of text in the .env
DB_HOST=localhost
DB_NAME={whatever you named your database}
DB_USER=root
DB_PASS={whatever your password is for the database}
Navigate to the project folder where you cloned the repo.
Then we need to start the server
php -S localhost:8000With the server running, open any browser and go to:
http://localhost:8000/views/login.phpChocolately is an open-source software package manager for Windows that automates the installation, upgrading, and removal of software, similar to package managers in Linux and macOS. Open Command Prompt as administrator and run:
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command " [System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"Once Chocolately is installed, install PHP
choco install phpchoco install mysqlchoco install --cask mysqlworkbenchCREATE DATABASE job_tracker;
At the top of your query, please type
use job_tracker
Then go into root of this repo and copy structure of the tables in Job_Listing.sql. The table creation should be under "use job_tracker"
touch .env
Then only add these 4 lines of text in the .env
DB_HOST=localhost
DB_NAME={whatever you named your database}
DB_USER=root
DB_PASS={whatever your password is for the database}
Navigate to the project folder where you cloned the repo.
Then we need to start the server
php -S localhost:8000With the server running, open any browser and go to:
http://localhost:8000/views/login.php