MachHach / fypmgmt

Final Year Project Management System.
MIT License
0 stars 0 forks source link

FYP Management System

One-stop platform to manage your Final Year Projects.

Getting started

Development

Requirements:

To start the VM:

  1. Copy .env.dev.example as .env.
  2. Run the following commands (as Administrator):
vagrant up
vagrant ssh
cd /var/www/html/fypmgmt
# Install project dependencies
sudo composer install
sudo npm install
# Compile assets
npm run dev
# Generate security tokens
php artisan key:generate
# Initialize database
php artisan migrate
php artisan db:seed

To view list of users in database via SQL command:

sudo -u {username} psql -d {database} -c "SELECT name,email FROM users;"

To stop the VM, run either of these commands:

License

MIT