Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🙏 Wanted to share what I did with this. #1

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_KEY=eXSlMSqqLgXgz3GFewpqI702WHQnEIFd

DB_CONNECTION=mysql
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
DB_HOST=127.0.0.1
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
Homestead.yaml
Homestead.json
.env
storage
database/database.sqlite
4 changes: 2 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ ports:
onOpen: ignore
tasks:
- init: composer install
command: echo "Hallo"
command: cp .env.example .env && cp data/database.sqlite database/database.sqlite && php artisan key:generate && php artisan migrate
- name: MySQL
command: >
mysqld
- name: Apache
command: >
apachectl start;
multitail /var/log/apache2/error.log -I /var/log/apache2/access.log
multitail /var/log/apache2/error.log -I /var/log/apache2/access.log
5 changes: 0 additions & 5 deletions README.md

This file was deleted.

33 changes: 0 additions & 33 deletions app/Console/Commands/Inspire.php

This file was deleted.

30 changes: 0 additions & 30 deletions app/Console/Kernel.php

This file was deleted.

8 changes: 0 additions & 8 deletions app/Events/Event.php

This file was deleted.

51 changes: 0 additions & 51 deletions app/Exceptions/Handler.php

This file was deleted.

65 changes: 0 additions & 65 deletions app/Http/Controllers/Auth/AuthController.php

This file was deleted.

32 changes: 0 additions & 32 deletions app/Http/Controllers/Auth/PasswordController.php

This file was deleted.

13 changes: 0 additions & 13 deletions app/Http/Controllers/Controller.php

This file was deleted.

33 changes: 0 additions & 33 deletions app/Http/Kernel.php

This file was deleted.

47 changes: 0 additions & 47 deletions app/Http/Middleware/Authenticate.php

This file was deleted.

17 changes: 0 additions & 17 deletions app/Http/Middleware/EncryptCookies.php

This file was deleted.

Loading