Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carlostojal/vcard_backend
https://github.com/carlostojal/vcard_backend
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/carlostojal/vcard_backend
- Owner: carlostojal
- Created: 2023-10-30T10:32:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T03:59:07.000Z (11 months ago)
- Last Synced: 2024-10-12T19:53:30.211Z (about 1 month ago)
- Language: PHP
- Size: 361 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vCard_backend
## Passport configuration
⚠️ You need to configure passport in order to be able to obtain access tokens. This is an essential step. ⚠️
- Install passport using `artisan passport:install`
- Create a passport client for vCards `artisan passport:client --passport`
- Name the client `client_vcard`;
- Take note of the assigned ID and secret;
- Place the ID and secret on the `.env` file under `VCARD_CLIENT_ID` and `VCARD_CLIENT_SECRET`.
- Create a passport client for users `artisan passport:client --passport`
- Name the client `client_user`;
- Take note of the assigned ID and secret;
- Place the ID and secret on the `.env` file under `USER_CLIENT_ID` and `USER_CLIENT_SECRET`.