Skip to content

Latest commit

 

History

History
72 lines (57 loc) · 2.19 KB

README.md

File metadata and controls

72 lines (57 loc) · 2.19 KB


Arcarus
Arcarus

A comprehensive web-based application for managing and creating class pictures (orlas).

Arcarus

Key FeaturesHow To Use

screenshot

Key Features

  • 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.

How To Use

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.