Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyledoesdev/phoneproplus
Semester long programming project for Web Programming.
https://github.com/kyledoesdev/phoneproplus
Last synced: 1 minute ago
JSON representation
Semester long programming project for Web Programming.
- Host: GitHub
- URL: https://github.com/kyledoesdev/phoneproplus
- Owner: kyledoesdev
- Created: 2022-02-01T03:19:36.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-19T04:07:56.000Z (over 2 years ago)
- Last Synced: 2024-11-12T02:39:32.328Z (about 2 months ago)
- Language: PHP
- Homepage: https://phoneproplus.herokuapp.com/about
- Size: 1.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PhoneProPlus
A neat CRUD app where a user has the ability to search and filter PhoneBook type records from PhoneProPluses public database. It also allows a user to create an account, and submit their own entries to the public database. Or, they can submit private records to serve as a backup to the user's contact list on their phone.## Instalation Guide
> git clone (repo)
Set up your database schema in the MySql Workbench:
Your schemea can be titled whatever you like, I named mine: "phone_book"### Configure your .env
> cp .env.example .env> Set your "DB_USERNAME", "DB_PASSWORD", "DB_DATABASE" values
### Now that your database is setup, run the following commands:
>composer installIf on windows, you may need to run
>composer install --ignore-platform-reqsThen run:
> npm install && npm run dev
> php artisan migrate
> php artisan db:seed
> php artisan key:generate
## To launch the devlopment server:
>php artisan serve
In your web browser of choice, go to: http://localhost:8000 and you should see the main landing page.