There are several ways to set up your development server and environment. Basically, you only need a running php server that uses the /public folder and an sql database connected to it. There are some tips how to achieve that (and even more) below.
- Ask for access to our gitpod organization
- Go to projects, and go to the bracnhes under the Mars project. Create a new workspace for your branch and open it in the browser or VS Code locally.
- You will see three terminals. One for the server, one for npm, and one for the database. You can close the last two once the scripts are finished, but you still need to run
php artisan migrate:fresh --seed
to get the DB seeded. The site is served athttp://localhost:8000
(or check the first few lines server logs). - Use with care, we have 50 hours of free usage per month.
This setup uses Docker to run the app and the database, therefore it is very easy to set up on any platform that supports Docker (Linux, Windows via WSL2, etc.). This setup is also recommended if you don't want to install PHP and other dependencies on your host machine, or if you already have a different (incompatible) version of PHP installed.
The instructions can be found in the docker-dev-setup/README.md file.
- Clone Mars:
git clone [email protected]:EotvosCollegium/mars.git
. - Install Composer and run
composer install
in the project directory. - You need to install Docker (and WSL2 on Windows). See requirements here.
- You need to install VS code
- You need to install the Remote Development extension pack in VS code.
- Open the project in VS code. Copy the
.env.example
file to.env
and runphp artisan key:generate
. SetDB_HOST
tomysql
in.env
file. - VS code should notice that the project is configured to use dev containers and will promt you if you want to use it. Click yes, and you're all done!
Note: to regenerate the docker configuration, use php artisan sail:install --devcontainer
For OS X, Valet gives a pretty smooth experience. Easy to download, easy to configure.
For Windows and Linux the project has an example Laravel Homestead configuration which can be used for local development.
With these steps you should be able to run Mars on your machine:
- Clone Mars:
git clone [email protected]:EotvosCollegium/mars.git
. - Install Vagrant and VirtualBox. (Or other virtualization platforms supported by Vagrant. Don't forget to reconfigure the
provider
in the steps below if you do so.) - Follow the instructions in the First steps section:
vagrant box add laravel/homestead
git clone https://github.com/laravel/homestead.git
from a folder where you want to set up Homestead- go into this new directory
git checkout release
init.bat
(bash init.sh
on Linux)
- Set up Homestead: Copy and rename
Homestead.yaml.example
from this repository toHomestead.yaml
in the Homestead directory (overwrite if needed). Modify this file by changingfolders: - map: /your/local/path/to/mars
. - Create ssh keys to
~/.ssh/homestead_rsa.pub
and~/.ssh/homestead_rsa
. (You can use something likessh-keygen -t rsa -b 4096 -C "[email protected]"
.) - On Windows add the
192.168.10.10 mars.local
host entry toC:\Windows\System32\drivers\etc\hosts
. - Go to your Homestead directory and Run
vagrant up
andvagrant ssh
to set up and enter your virtual machine. - In the project root (
cd mars
) runcomposer install
- Set up Mars: Copy and rename
.env.example
to.env
, and change these settings:DB_DATABASE=homestead DB_USERNAME=homestead DB_PASSWORD=secret APP_URL=http://mars.local
. - Run the following commands:
- Run
php artisan migrate:fresh --seed
. - Run
php artisan key:generate
. - Run
npm install
to install JS related dependencies. - Run
npm run dev
to create the CSS and JS files in thepublic
directory.
- The project should be running at mars.local.
- You can add your personal access token from GitHub to use the GitHub API (eg. bug reports are sent through this). You can generate a token here. You have to check the 'public_repo' scope.
- If you want to test emails, change
MAIL_TEST_ADMIN
to your email (after seeding, you will be able to log in to the admin user with this email address) and set your email credentials (MAIL_USERNAME
andMAIL_PASSWORD
) - you might have to enable third party access to your email account. - If you are working with uploaded files, run
php artisan storage:link
to make the uploads available by their paths in the url.
Most of the above setup is a one-time thing to do. However, whenever you start working on based on a newer version, you will have to run the following commands:
npm run dev
: In case of recent UI changes (ie. JS or CSS), this will generate the new assets fromwebpack.mix.js
. For frontend developers,npm watch
might be useful -- it does the same, but also updates on change.php artisan migrate:fresh --seed
: This will migrate everything from scratch (useful if you work on changes in parallel) and seeds the database.
You can log in to our seeded admin user with email MAIL_TEST_ADMIN
([email protected]
by default - you can find this in your .env file) and with password asdasdasd
. See database/seeds/UsersTableSeeder.php
for more predefined users.
This method is known to work under Linux (Ubuntu 20.04, to be precise). Maybe it also works with WSL2.
The steps:
- Follow the points under "Universal" until step 3 (here are Docker installation instructions).
- Add your user to the
docker
group:sudo groupadd docker && sudo usermod -aG docker $USER
. This will ensure you can manage Docker withoutsudo
later. (Note: this might be a bit unsafe. But this is the way it worked for me.) - In
.env
, updateAPP_URL
tohttp://localhost:8080
. - Add these lines:
APP_PORT=8080
FORWARD_DB_PORT=33066
- Still in
.env
, rewriteDB_HOST
from the given IP tomysql
. - Run
./vendor/bin/sail up
. - Open another terminal. Before seeding, add the correct privilege to Laravel's user in MySQL by running:
docker exec -it mars-mysql-1 mysql --password -e "SET GLOBAL log_bin_trust_function_creators = 1;"
- Run
./vendor/bin/sail artisan migrate:fresh --seed
. (Other Artisan commands need to be executed similarly.) - Now you can test the site at
http://localhost:8080
. - Instead of SSH, you can use
docker exec -it mars-laravel.test-1 bash
. - And to access MySQL, run
docker exec -it mars-mysql-1 mysql --user=mars --password mars
(change the container name, the username and the database name if needed; the latter two are in .env) and log in with the password (also found in .env).