COMP490/CIT480 Senior Design project. This application will navigate students to their respective classes based on their schedule and more!
Make sure you have the following:
- Clone the repo into your projects folder with your terminal using
git clone https://github.com/CSUN-Comp490/classroom-profiles.git
and change directory into the projectcd classroom-profiles
- Run
composer install
on the terminal - Run
yarn
ornpm install
to grab Frontend packages - Copy the .env.example as a .env file with
cp .env.example .env
If you're using the database, ask your Ops person for the proper .env file - Run
php artisan key:generate
- Now run
docker-compose up -d
to start your local dev environment - Visit
http://localhost:8080
to view the project
Tip: When you're done developing, run docker-compose down
to stop your environment