Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tnp-gndec/tnp-website
- Owner: TNP-GNDEC
- Created: 2020-12-14T15:51:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-29T10:56:16.000Z (about 2 months ago)
- Last Synced: 2024-10-11T11:22:37.221Z (about 1 month ago)
- Topics: hacktoberfest, javascript, laravel8, material-ui, mysql, php, reactjs
- Language: JavaScript
- Homepage: https://tnpgndec.com
- Size: 60.6 MB
- Stars: 10
- Watchers: 1
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```