Development Environment
Create a containerized development environment so you can build, test and contribute to Speedtest Tracker.
Setup and Start the Development Environment
1. Clone the repository
git clone [email protected]:alexjustesen/speedtest-tracker \
&& cd speedtest-tracker2. Make a copy of `.env.example` and update DB variables
cp .env.example .envAPP_NAME="Speedtest Tracker"
APP_ENV=local
APP_KEY=
APP_DEBUG=false
APP_TIMEZONE=UTC3. Install Composer dependencies
4. Build Sail development container
5. Start the development environment
6. Create the database
7. Installing NPM assets
Reset your development environment
Processing Jobs in the Queue using a Worker
Lint your code before opening a PR or committing changes
Stopping the development environment
Last updated