Skip to content

How to start?

Rafał Toborek edited this page Feb 8, 2024 · 5 revisions

This is simplified version of the tutorial describing how to setup project for development purpose.

Prerequisites

You need Docker and Make (part of the *NIX systems) to be installed locally on your machine.

Step by step instruction

  • clone rbiblia-web repo to your local drive

  • create and fill src/config/app.php file based on the app.dist.php file in the same location

Reach out to Rafał in order to get predefined file which will allows you to work with external development database without need of creating your own - this will boost development process (especially if you are interested in working with the front side of the project).

If you prefer to work with the local version of the database then you need to create it and fill app.php file with the correct database credentials. After that you will have to import database structure from the /docs/db_structure.sql file. Last step is to import some translations, you can read more about this process in the Working in the console page.

  • run Docker:
make start
  • install Composer/Node dependencies and compile assets:
make dev

That's it. Your version of the project is hosted at localhost.

Clone this wiki locally