Skip to main content

Local Development

This guide will help you set up Le Circographe for local development.

Prerequisites

Before you begin, make sure you have installed:

Clone the Repository

git clone https://github.com/LeCircographe-asso/core.git
cd circographe

Install Dependencies

bundle install

Database Setup

rails db:create
rails db:migrate
rails db:seed # Optional: adds sample data

Start the Development Server

rails server

Your application should now be running at http://localhost:3000.

Running Tests

rails test

Code Quality

We use RuboCop for code quality checks:

rubocop