Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tnp-gndec/tnp-website

Training and Placement Cell Website
https://github.com/tnp-gndec/tnp-website

hacktoberfest javascript laravel8 material-ui mysql php reactjs

Last synced: about 1 month ago
JSON representation

Training and Placement Cell Website

Awesome Lists containing this project

README

        

# About

TNP WEBSITE - [Website Link](https://www.tnpgndec.com/)

# Installation

### Quick install

```
git clone https://github.com/TNP-GNDEC/TNP-WEBSITE.git
```

Once the Repositary is cloned jump into the cloned directory using :

```
cd TNP-WEBSITE
```

**Create a file named .env and copy the contents of .env.example into .env file.Now fill the Database name and password for phpmyadmin**

Run the following commands inorder to install all the dependencies :

```
composer install
npm install
```

Generate the php application key :

```
php artisan key:generate
php artisan migrate
```

For JWT Token:

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

Now you are Ready to launch the web application :

```
php artisan serve
npm run watch
```