hajaulee / TeamCollaborate

a place where your team comes together to collaborate, important information can be found by the right people, and your tools pipe in information when and where you need it.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Team Collaborate

Team Collaborate was built with Laravel 5.7 + VueJs 2.0

Server Requirements

  • PHP >= 7.1.3
  • Node >= 6.x
  • OpenSSL PHP Extension
  • PDO PHP Extension
  • Mbstring PHP Extension
  • Tokenizer PHP Extension
  • XML PHP Extension
  • Ctype PHP Extension
  • JSON PHP Extension
  • MySql 5.7+

How to Install?

1. Clone the source code or create new project.

git clone https://github.com/minhquang4334/TeamCollaborate.git

2. Set the basic config

cp .env.example .env

Edit the .env file and set the database and other config for the system after you copy the .env.example file.

2. Install the extended package dependency.

Install the Laravel extended repositories:

composer install -vvv

Install the Vuejs extended repositories:

npm install

Compile the js code:

npm run dev

// OR

npm run watch

// OR

npm run production

3. Run the collaborate install command, the command will run the migrate command and generate test data.

php artisan collaborate:install

4. Generate JWT

php artisan vendor:publish --provider="Tymon\JWTAuth\Providers\LaravelServiceProvider"
php artisan jwt:secret

Fix your .env for send mail and login by Google

example

MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=*****@gmail.com
MAIL_PASSWORD=*****
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=*****@gmail.com
MAIL_FROM_NAME=ASTEAMK60

GG_CLIENT_ID=*******
GG_CLIENT_SECRET=*****
GG_REDIRECT_URL=http://localhost:8000/oauth/google/callback

Create Admin

php artisan system:admin

About

a place where your team comes together to collaborate, important information can be found by the right people, and your tools pipe in information when and where you need it.


Languages

Language:PHP 57.6%Language:HTML 29.7%Language:Vue 12.7%