Welcome to the project! This guide will help you set up your development environment and get the project running.
-
Clone the repository
git clone https://github.com/MaxKorlaar/hypixel-signatures.git cd hypixel-signatures
-
Open the project in a dev container
- Instructions for PhpStorm
- Instructions for VS Code: open the project in VS Code Press
F1
and selectDev Containers: Open Folder in Container
(Source: Quick start: Open an existing folder in a container)
// TODO
-
Run a bunch of one-time commands
Note that if you're using pnpm, execute
pnpm install --shamefully-hoist
instead ofpnpm install
.cp .env.example .env pnpm install --shamefully-hoist pnpm run development php artisan key:generate
-
Start the development server
You can start the development server using the following command:
php artisan serve
-
Open the website
Open your browser and navigate to http://localhost:8000.