WesleyKlop / ipsen5

Repository voor StemApp 2.0

Home Page:https://stemapp.eu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StemApp 2.0

Build Status Dependabot Status

This is the repository for StemApp 2.0

Tech

Getting started

First setup your development environment, I recommend using either valet or homestead.
Clone the repository somewhere:

git clone git@github.com:WesleyKlop/ipsen5.git && cd ipsen5

Install the needed dependencies using composer and yarn(alternative to npm)

composer install
yarn install

You can now run the application (see homestead/valet documentation or use php artisan serve)
While developing the frontend react part of the application you should run this to compile your code:

yarn watch 

If you want a better frontend development experience without having to manually reload, you should use this:

yarn hot

Database

Laravel includes db migrations, so if you're using a local test db you can run the following pieces of code:

php artisan migrate # optional: use migrate:fresh to rerun all migrations

You can also seed your db with dummy data(provided that there are seeders for it)

php artisan db:seed

For more info on migrations and stuff, RTFM.

Workflow

We use Git Flow to try and force everyone to keep to a certain workflow. When starting a new feature you can do this:

git flow feature start my-feature-name

When you've done some commits you can create a pull request on /WesleyKlop/ipsen5/pull
Releases will be done every sprint by the repository owner.

About

Repository voor StemApp 2.0

https://stemapp.eu


Languages

Language:PHP 95.1%Language:HTML 4.9%