- Comprehensive Class Picture (Orla) Management
- Create, update, and manage class pictures with assigned users and content.
- Section Content Handling
- Manage content within sections, including user-specific content and general information like group names and academic year descriptions.
- User Management
- Handle users, their pictures, and their association with different sections in class pictures.
- Security
- Secure access to different parts of the application using a robust security mechanism.
- Cross-platform
- Available for Windows, macOS, and Linux.
To clone and run this application, you'll need Git and Composer installed on your computer. From your command line:
# Clone this repository
$ git clone https://github.com/yourusername/arcarus
# Go into the repository
$ cd arcarus
# Install dependencies
$ composer install
# Set up environment variables
$ mv .env.example .env
# Run database migrations
$ php bin/console doctrine:migrations:migrate
# Serve the application
$ php -S localhost:8000 -t public
//also, instead of that, you can use:
$ symfony serve
Note If you're using Linux Bash for Windows, see this guide or use php from the command prompt.