A secret santa wishlist builder.
I’m building a secret Santa app for my family to during the holidays. A user can build a wishlist and everybody else can check things off of it without the user being able to see.
There are some issues to get started with, but I'm open to any ideas! I'd recommend you create an issue first, before starting work, just to get confirmation that I'm not wasting your time.
Step one is to clone this repo:
git clone https://github.com/imacrayon/snowbodyknows
cd snowbodyknows
If you're looking to get started quickly we recommend using our Docker setup. If you'r using something like Herd or Valet on your machine you can follow our basic setup steps.
- With Docker installed on your machine, start up a docker container:
./vendor/bin/sail up
Check the Laravel Sail documentation for command line details.
-
Install PHP dependencies:
composer install
-
Install NPM dependencies:
npm install
-
Build assets:
npm run dev
-
Create a SQLite database: (You can also use another database [MySQL, Postgres], simply update your configuration accordingly)
touch database/database.sqlite
-
Copy the environment config example and rename it to
.env
:cp .env.example .env
-
Generate an application key:
php artisan key:generate
-
Run database migrations:
php artisan migrate
-
Start the built-in web server:
php artisan serve
You're ready to go! Visit http://127.0.0.1:8000 in your browser.