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 --seedto 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 git@github.com:EotvosCollegium/mars.git. - Install Composer and run
composer installin 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.examplefile to.envand runphp artisan key:generate. SetDB_HOSTtomysqlin.envfile. - 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 git@github.com:EotvosCollegium/mars.git. - Install Vagrant and VirtualBox. (Or other virtualization platforms supported by Vagrant. Don't forget to reconfigure the
providerin the steps below if you do so.) - Follow the instructions in the First steps section:
vagrant box add laravel/homesteadgit clone https://github.com/laravel/homestead.gitfrom a folder where you want to set up Homestead- go into this new directory
git checkout releaseinit.bat(bash init.shon Linux)
- Set up Homestead: Copy and rename
Homestead.yaml.examplefrom this repository toHomestead.yamlin the Homestead directory (overwrite if needed). Modify this file by changingfolders: - map: /your/local/path/to/mars. - Create ssh keys to
~/.ssh/homestead_rsa.puband~/.ssh/homestead_rsa. (You can use something likessh-keygen -t rsa -b 4096 -C "your_email@example.com".) - On Windows add the
192.168.10.10 mars.localhost entry toC:\Windows\System32\drivers\etc\hosts. - Go to your Homestead directory and Run
vagrant upandvagrant sshto set up and enter your virtual machine. - In the project root (
cd mars) runcomposer install - Set up Mars: Copy and rename
.env.exampleto.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 installto install JS related dependencies. - Run
npm run devto create the CSS and JS files in thepublicdirectory.
- 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_ADMINto 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_USERNAMEandMAIL_PASSWORD) - you might have to enable third party access to your email account. - If you are working with uploaded files, run
php artisan storage:linkto 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 watchmight 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 (example@eotvos.elte.hu 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
dockergroup:sudo groupadd docker && sudo usermod -aG docker $USER. This will ensure you can manage Docker withoutsudolater. (Note: this might be a bit unsafe. But this is the way it worked for me.) - In
.env, updateAPP_URLtohttp://localhost:8080. - Add these lines:
APP_PORT=8080
FORWARD_DB_PORT=33066
- Still in
.env, rewriteDB_HOSTfrom 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).