https://github.com/divspace/form
https://github.com/divspace/form
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/divspace/form
- Owner: divspace
- Created: 2016-06-12T18:37:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-14T04:13:49.000Z (almost 10 years ago)
- Last Synced: 2025-07-20T06:13:00.737Z (11 months ago)
- Language: PHP
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Form Test
This code sample is built using the following:
- [Bootstrap](http://v4-alpha.getbootstrap.com)
- [Gulp](http://gulpjs.com)
- [Laravel](https://laravel.com)
- [Npm](https://www.npmjs.com)
- [Vue.js](http://vuejs.org)
To test the form out, you can install [Valet](https://laravel.com/docs/5.2/valet) or use the built-in PHP server. Regardless of what you choose, please run the following commands:
```bash
git clone https://github.com/divspace/form
cd form
composer install
npm install
gulp
cp .env.example .env
php artisan key:generate
php artisan migrate
```
## Valet
If you choose this method, change into the `form` directory and run this command:
```bash
valet link
```
You can then access the site by going to:
`http://form.dev`
## PHP Server
Alternatively, you can use the built-in server that PHP has by running this command:
```bash
php artisan serve
```
You can then access the site by going to:
`http://localhost:8000`