Skip to content
Snippets Groups Projects
setup-development.md 10.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
    ---
    title: Development setup
    sidebarDepth: 3
    ---
    
    # Setup your development environment
    
    ## Introduction
    
    Castopod is a web app based on the `php` framework
    [CodeIgniter 4](https://codeigniter.com).
    
    We use [Docker](https://www.docker.com/) quickly setup a dev environment. A
    `docker-compose.yml` and `Dockerfile` are included in the project's root folder
    to help you kickstart your contribution.
    
    > You don't need any prior knowledge of Docker to follow the next steps.
    > However, if you wish to use your own environment, feel free to do so!
    
    ## Setup instructions
    
    ### 1. Pre-requisites
    
    0. Install [docker](https://docs.docker.com/get-docker).
    
    1. Clone Castopod project by running:
    
       ```bash
       git clone https://code.castopod.org/adaures/castopod.git
       ```
    
    2. Create a `.env` file with the minimum required config to connect the app to
       the database and use redis as a cache handler:
    
       ```ini
       CI_ENVIRONMENT="development"
       # If set to development, you must run `npm run dev` to start the static assets server
       vite.environment="development"
    
       # By default, this is set to true in the app config.
       # For development, this must be set to false as it is
       # on a local environment
       app.forceGlobalSecureRequests=false
    
       app.baseURL="http://localhost:8080/"
       app.mediaBaseURL="http://localhost:8080/"
    
       admin.gateway="cp-admin"
       auth.gateway="cp-auth"
    
       database.default.hostname="mariadb"
       database.default.database="castopod"
       database.default.username="castopod"
       database.default.password="castopod"
    
       cache.handler="redis"
       cache.redis.host = "redis"
    
       # You may not want to use redis as your cache handler
       # Comment/remove the two lines above and uncomment
       # the next line for file caching.
       #cache.handler="file"
       ```
    
       > _NB._ You can tweak your environment by setting more environment variables
       > in your custom `.env` file. See the `env` for examples or the
       > [CodeIgniter4 User Guide](https://codeigniter.com/user_guide/index.html)
       > for more info.
    
    3. (for docker desktop) Add the repository you've cloned to docker desktop's
       `Settings` > `Resources` > `File Sharing`
    
    ### 2. (recommended) Develop inside the app Container with VSCode
    
    If you're working in VSCode, you can take advantage of the `.devcontainer/`
    folder. It defines a development environment (dev container) with preinstalled
    requirements and VSCode extensions so you don't have to worry about them. All
    required services will be loaded automagically! 🪄
    
    1. Install the VSCode extension
       [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
    2. `Ctrl/Cmd + Shift + P` > `Open in container`
    
       > The VSCode window will reload inside the dev container. Expect several
       > minutes during first load as it is building all necessary services.
    
       **Note**: The dev container will start by running Castopod's php server.
       During development, you will have to start [Vite](https://vitejs.dev)'s dev
       server for compiling the typescript code and styles:
    
       ```bash
       # run Vite dev server
       npm run dev
       ```
    
       If there is any issue with the php server not running, you can restart them
       using the following commands:
    
       ```bash
       # run Castopod server
       php spark serve - 0.0.0.0
       ```
    
    3. You're all set! 🎉
    
       You're now **inside the dev container**, you may use the VSCode console
       (`Terminal` > `New Terminal`) to run any command:
    
       ```bash
       # PHP is installed
       php -v
    
       # Composer is installed
       composer -V
    
       # npm is installed
       npm -v
    
       # git is installed
       git version
       ```
    
    For more info, see
    [VSCode Remote Containers](https://code.visualstudio.com/docs/remote/containers)
    
    ### 3. Start hacking
    
    You're all set! Start working your magic by updating the project's files! Help
    yourself to the
    [CodeIgniter4 User Guide](https://codeigniter.com/user_guide/index.html) for
    more insights.
    
    To see your changes, go to:
    
    - `http://localhost:8080/` for the Castopod app
    - `http://localhost:8888/` for the phpmyadmin interface:
    
      - username: **castopod**
      - password: **castopod**
    
    ### 2-alt. Develop outside the app container
    
    You do not wish to use the VSCode devcontainer? No problem!
    
    1. Start docker containers manually:
    
       Go to project's root folder and run:
    
       ```bash
       # starts all services declared in docker-compose.yml file
       # -d option starts the containers in the background
       docker-compose up -d
    
       # See all running processes (you should see 3 processes running)
       docker-compose ps
    
       # Alternatively, you can check all docker processes
       docker ps -a
    
       ```
    
       > The `docker-compose up -d` command will boot 4 containers in the
       > background:
       >
       > - `castopod_app`: a php based container with Castopod requirements
       >   installed
       > - `castopod_redis`: a [redis](https://redis.io/) database to handle queries
       >   and pages caching
       > - `castopod_mariadb`: a [mariadb](https://mariadb.org/) server for
       >   persistent data
       > - `castopod_phpmyadmin`: a phpmyadmin server to visualize the mariadb
       >   database.
    
    2. Run any command inside the containers by prefixing them with
       `docker-compose run --rm app`:
    
       ```bash
       # use PHP
       docker-compose run --rm app php -v
    
       # use Composer
       docker-compose run --rm app composer -V
    
       # use npm
       docker-compose run --rm app npm -v
    
       # use git
       docker-compose run --rm app git version
       ```
    
    ---
    
    ## Going Further
    
    ### Install Castopod's dependencies
    
    1. Install php dependencies with [Composer](https://getcomposer.org/)
    
       ```bash
       composer install
       ```
    
       ::: info Note
    
       The php dependencies aren't included in the repository. Composer will check
       the `composer.json` and `composer.lock` files to download the packages with
       the right versions. The dependencies will live under the `vendor/` folder.
       For more info, check out the
       [Composer documentation](https://getcomposer.org/doc/).
    
       :::
    
    2. Install javascript dependencies with [npm](https://www.npmjs.com/)
    
       ```bash
       npm install
       ```
    
       ::: info Note
    
       The javascript dependencies aren't included in the repository. Npm will check
       the `package.json` and `package.lock` files to download the packages with the
       right versions. The dependencies will live under the `node_module` folder.
       For more info, check out the [NPM documentation](https://docs.npmjs.com/).
    
       :::
    
    3. Generate static assets:
    
       ```bash
       # build all static assets at once
       npm run build:static
    
       # build specific assets
       npm run build:icons
       npm run build:svg
       ```
    
       ::: info Note
    
       The static assets generated live under the `public/assets` folder, it
       includes javascript, styles, images, fonts, icons and svg files.
    
       :::
    
    ### Initialize and populate database
    
    ::: tip Tip
    
    You may skip this section if you go through the install wizard (go to
    `/cp-install`).
    
    :::
    
    1. Build the database with the migrate command:
    
       ```bash
       # loads the database schema during first migration
       php spark migrate -all
       ```
    
       You may need to undo the migration (rollback):
    
       ```bash
       # rolls back database schema (deletes all tables and their content)
       php spark migrate:rollback
       ```
    
    2. Populate the database with the required data:
    
       ```bash
       # Populates all required data
       php spark db:seed AppSeeder
       ```
    
       You may choose to add data separately:
    
       ```bash
       # Populates all categories
       php spark db:seed CategorySeeder
    
       # Populates all Languages
       php spark db:seed LanguageSeeder
    
       # Populates all podcasts platforms
       php spark db:seed PlatformSeeder
    
       # Populates all Authentication data (roles definition…)
       php spark db:seed AuthSeeder
       ```
    
    3. (optionnal) Populate the database with test data:
    
       - Populate test data (login: admin / password: AGUehL3P)
    
       ```bash
       php spark db:seed TestSeeder
       ```
    
       - Populate with fake podcast analytics:
    
       ```bash
       php spark db:seed FakePodcastsAnalyticsSeeder
       ```
    
       - Populate with fake website analytics:
    
       ```bash
       php spark db:seed FakeWebsiteAnalyticsSeeder
       ```
    
       TestSeeder will add an active superadmin user with the following credentials:
    
       - username: **admin**
       - password: **AGUehL3P**
    
    ### Useful docker / docker-compose commands
    
    - Monitor the app container:
    
    ```bash
    docker-compose logs --tail 50 --follow --timestamps app
    ```
    
    - Interact with redis server using included redis-cli command:
    
    ```bash
    docker exec -it castopod_redis redis-cli
    ```
    
    - Monitor the redis container:
    
    ```bash
    docker-compose logs --tail 50 --follow --timestamps redis
    ```
    
    - Monitor the mariadb container:
    
    ```bash
    docker-compose logs --tail 50 --follow --timestamps mariadb
    ```
    
    - Monitor the phpmyadmin container:
    
    ```bash
    docker-compose logs --tail 50 --follow --timestamps phpmyadmin
    ```
    
    - Restart docker containers:
    
    ```bash
    docker-compose restart
    ```
    
    - Destroy all containers, opposite of `up` command:
    
    ```bash
    docker-compose down
    ```
    
    - Rebuild app container:
    
    ```bash
    docker-compose build app
    ```
    
    Check [docker](https://docs.docker.com/engine/reference/commandline/docker/) and
    [docker-compose](https://docs.docker.com/compose/reference/) documentations for
    more insights.
    
    ## Known issues
    
    ### Allocation failed - JavaScript heap out of memory
    
    This happens when running `npm install`.
    
    👉 By default, docker might not have access to enough RAM. Allocate more memory
    and run `npm install` again.
    
    ### (Linux) Files created inside container are attributed to root locally
    
    You may use Linux user namespaces to fix this on your machine:
    
    ::: info Note
    
    Replace "username" with your local username
    
    :::
    
    1. Go to `/etc/docker/daemon.json` and add:
    
       ```json
       {
         "userns-remap": "username"
       }
       ```
    
    2. Configure the subordinate uid/guid:
    
       ```bash
       # in /etc/subuid
       username:1000:1
       username:100000:65536
       ```
    
       ```bash
       # in /etc/subgid
       username:1000:1
       username:100000:65536
       ```
    
    3. Restart docker:
    
       ```bash
       sudo systemctl restart docker
       ```
    
    4. That's it! Now, the root user in the container will be mapped to the user on
       your local machine, no more permission issues! 🎉
    
    You can check
    [this great article](https://www.jujens.eu/posts/en/2017/Jul/02/docker-userns-remap/)
    to know more about how it works.