No description
Find a file
2026-04-25 02:20:35 +02:00
.woodpecker feat: implement automatic deploy to coolify instance 2026-04-25 02:20:35 +02:00
assets feat: build an admin dashboard (#11) 2026-02-01 19:30:58 +01:00
config fix SSL issues 2026-04-24 23:48:59 +02:00
lib fix: admin calendar days 2026-03-31 16:24:14 +02:00
priv chore: update seeds for production & contents 2026-02-09 19:39:58 +01:00
rel feat: setup for fly.io deployment 2026-01-13 13:57:52 +01:00
test fix: admin calendar days 2026-03-31 16:24:14 +02:00
.credo.exs refactor: make phone number optional (#9) 2026-01-15 15:57:54 +01:00
.dockerignore feat: setup for fly.io deployment 2026-01-13 13:57:52 +01:00
.formatter.exs feat: new booking system + admin dashboard (#12) 2026-02-07 19:08:39 +01:00
.gitignore Setup first public version of the project 2026-01-10 19:03:02 +01:00
.igniter.exs Setup first public version of the project 2026-01-10 19:03:02 +01:00
AGENTS.md Setup first public version of the project 2026-01-10 19:03:02 +01:00
CLAUDE.md Setup first public version of the project 2026-01-10 19:03:02 +01:00
compose.yml Setup first public version of the project 2026-01-10 19:03:02 +01:00
Dockerfile chore: fix Dockerfile to run migrations too 2026-04-25 00:17:15 +02:00
LICENSE.md Setup first public version of the project 2026-01-10 19:03:02 +01:00
mix.exs fix: update environment 2026-03-08 19:20:27 +01:00
mix.lock chore: update deps 2026-03-31 16:24:14 +02:00
README.md feat: setup for fly.io deployment 2026-01-13 13:57:52 +01:00
yamlfmt.yml Setup first public version of the project 2026-01-10 19:03:02 +01:00

SpazioSolazzo

Spazio Solazzo is a cultural space in the heart of Palermo where people around the world gather to work, meet or play music.

Spazio Solazzo is managed by the Caravanserai cultural association and is found next to the Mojo Coliving project, which also makes part of Caravanserai.

This project allows Caravanserai to manage the booking of the different spaces inside Spazio Solazzo. Spazio Solazzo at the moment is made out of three other spaces:

  • A Coworking space, where people can book desks to work and share during the day.
  • A meeting room that people and companies can book for their own meetings.
  • A music jam space that single musicians and bands can book for their rehearsals and other musical projects.

Development

This site is build with Elixir.

I've decided to use the Phoenix web framework together with the Ash framework, together they allow me to build a rich interactive website with a rich data model easy to develop, test and maintain.

Personally, Phoenix is my go-to framework for any web projects that require any interactivity and real-time feedback to the users.

Ash helps modeling your domain and business logic in a very straight-forward way that integrates seamlessly with Phoenix.

Setup DB

First you will need to have Docker and Docker compose installed. See installation instructions.

Then, to spin up your local postgres database simply run:

docker compose up -d

Setup Phoenix project

You'll need to make sure you have Elixir, Erlang and Phoenix installed in your system.

After that, download the dependencies:

mix deps.get

And setup the project with:

mix setup

This should run the DB migrations and seed the DB with mock data.

Now you should be ready to run the tests:

mix test

Or to run the compiler, formatter, tests, credo and more:

mix precommit

Now, to start your Phoenix server:

  • Start Phoenix endpoint with mix phx.server or inside IEx with iex -S mix phx.server

Now you can visit localhost:8080 from your browser and you're ready to go!

License

Copyright 2026 Victor Martinez Montané

Licensed under the Apache License, Version 2.0 (the "License"), subject to the Commons Clause License Condition v1.0. You may not use this file except in compliance with the License.

See the LICENSE file for details.