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

Gitignore clean #84

Closed
wants to merge 4 commits into from
Closed
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
55 changes: 6 additions & 49 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,53 +2,10 @@
/vendor
composer.phar
.DS_Store

/app/storage/logs/log-apache2handler-2013-11-13.txt
/app/storage/logs/log-apache2handler-2013-11-15.txt
/app/storage/logs/log-apache2handler-2013-11-16.txt
/app/storage/logs/log-apache2handler-2013-11-17.txt
/app/storage/logs/log-apache2handler-2013-11-18.txt
/app/storage/logs/log-cli-2013-11-15.txt
/app/storage/logs/log-cli-2013-11-16.txt
/app/storage/logs/log-cli-2013-11-17.txt
/app/config/database.php
/app/config/mail.php
/app/database/*.sqlite
/app/storage/logs/*
/app/storage/meta/services.json
/app/storage/sessions/sess_2e8fff45812452223d364b3701c57599
/app/storage/views/074a6e3d45461743c9c70a430f24cb2f
/app/storage/views/0898d0a6e390c1e0936ed85aa00bceb4
/app/storage/views/0929c6954dff5de776b648f0b2b55d91
/app/storage/views/0dc4ec75184a1146d243b35fd8d1d021
/app/storage/views/1b5f399b4e32b64b23b481f67d30ddc5
/app/storage/views/23518861fe3abb3c5c057c78f23b753f
/app/storage/views/24eddb1a11f215387f0fa05d7921e1a9
/app/storage/views/30d1b9afa1342a177b8c64152c9f738c
/app/storage/views/340bc584ed2857c4811f8d9e4ed55a33
/app/storage/views/352ec637e6b79ee29be08ef818ed5f1d
/app/storage/views/37f1443261c8260dd7c911d9b8917825
/app/storage/views/3c4ca96328340990da1dc0a471dc79b0
/app/storage/views/40768d70f551f4516bd8a24fb88b8afd
/app/storage/views/48999d750f189d68ca608663076f97e0
/app/storage/views/49cbbff0cb8bb4a6f572e7e38d5db596
/app/storage/views/5986ecb5aca83df685042db5855d4dae
/app/storage/views/5be43cf2d633a60a5d1f0660233b7974
/app/storage/views/5c7b9f147de9946f763329aee3a41cd4
/app/storage/views/61c21173899f0c6480a2677300d494fe
/app/storage/views/63b6bd25c59d3397787af33458b46982
/app/storage/views/6469acf79871c5c8c654f8aed2d9fcc6
/app/storage/views/753f789108c3b45f2ec6f65ac851539c
/app/storage/views/76833349b6be4a848cfae6532d297f5b
/app/storage/views/840ff169b266f72943a78b16fde0fffd
/app/storage/views/88ce10ea8b4fc7eb9424e1ac29973566
/app/storage/views/8a09ff6951f92a1e85f23f6a1fddba52
/app/storage/views/9a3d299acb9a9a1b2e30136315085c8b
/app/storage/views/9d10051fa34809314499c21d6bb9bb6a
/app/storage/views/a19b88281da184faf892da4712b25309
/app/storage/views/b53f5ba729511e00a1b9d6834a7586bb
/app/storage/views/b53fae332b5d35fe1e61560b3313527f
/app/storage/views/bc9a5404610a0dd796dd1a8888d6c8e1
/app/storage/views/c40a92db96f64e54fa6054d57810b0aa
/app/storage/views/cb04f9bcd20531d048720218e0ade7a3
/app/storage/views/d08fe3bd6997060c2e567582871aa7a5
/app/storage/views/dcd5f5756492bf2673c48a3991e65740
/app/storage/views/ec0fde70340126123972825cebbffb49
/app/storage/views/ec4f837768ede927a321fc6ece6abbae
/app/storage/views/f72c29c1b97cb5dbad78efbe1198f1f2
/app/storage/sessions/*
/app/storage/views/*
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,19 @@ Forgetting to do this can mean your DB might end up out of sync with the new fil

### 3) Setup Database

Create a database and update the file `app/config/database.php` with your database name and credentials.
Create a database and update the file `app/config/database.php.example` with your database name and credentials, then rename the file to `database.php`

nano app/config/database.php.example
mv app/config/database.php.example app/config/database.php

-----

### 4) Setup Mail Settings

Now, you need to setup your mail settings by just opening and updating the following file `app/config/mail.php`.
Now, you need to setup your mail settings by opening and updating the following file `app/config/mail.php.example`, then rename it to `mail.php`

nano app/config/mail.php.example
mv app/config/mail.php.example app/config/mail.php

This will be used to send emails to your users, when they register and they request a password reset.

Expand Down
File renamed without changes.
File renamed without changes.