Skip to content

h3mantD/EmployeeOps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation Steps

  1. Clone the repository

    git clone https://github.com/h3mantD/EmployeeOps.git
  2. Change the working directory

    cd EmployeeOps
  3. Install dependencies

    composer install
    npm install
  4. Create a copy of your .env file

    cp .env.example .env
  5. Generate an app encryption key

    php artisan key:generate
  6. Add database configurations in .env

    # sqlite db details - for SQLite you should php-sqlite3 extension installed
    DB_CONNECTION=sqlite
    DB_DATABASE=/your-full-path/EmployeeOps/database/EmployeeOps.sqlite
    
    # mysql db details
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=db_name
    DB_USERNAME=root
    DB_PASSWORD=password
  7. Run the database migrations

    php artisan migrate
  8. Create super admin by executing the following command

    php artisan app:create-super-admin
  9. Build the frontend assets

    npm run build
  10. Start the local development server

    php artisan serve
  11. You can now access the server at http://127.0.0.1:8000

  12. Login with the super admin credentials and now you can create employees and projects.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published