Skip to content

A moodle-like django web app to manage submissions and evaluations of IT projects

Notifications You must be signed in to change notification settings

Ionfinisher/django-it-academia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

django-it-academia

A moodle-like django web app to manage submissions and evaluations of IT projects

Table of Contents

Installation

Follow these steps to set up the IT Academia project on your local machine.

Prerequisites

  • Python (3.7+)
  • MySQL Database Server

Clone the Repository

git clone https://github.com/Ionfinisher/it-academia.git
cd it-academia

Create a Virtual Environment (Optional but Recommended)

python3 -m venv venv
source venv/bin/activate

Install Dependencies

pip install -r requirements.txt

Configure the Database

Create a MySQL database for the project with the dump file. Update the DATABASES configuration in it_academia/settings.py with your database settings.

Apply Migrations

Make sure to only migrate the academia app because the admin app can cause errors

python manage.py makemigrations academia
python manage.py migrate academia

Run the Development Server

python manage.py runserver

The IT Academia website will now be accessible at http://127.0.0.1:8000/.

Usage

Access the admin panel at http://127.0.0.1:8000/ and log in with email: [email protected], password: adminitacademia to manage courses, assignments, users, and grades.
Teachers can log in and create assignments for their courses.
One teacher credentials:
email: [email protected], password: Voltoche21.
Students can log in, view assignments, submit solutions, and view their grades and feedback.
One student credentials:
email: [email protected], password: Voltoche21.

Configuration

it_academia/settings.py: Main project settings file.
it_academia/urls.py: URL routing configuration.
academia/models.py: Define the data models.
academia/forms.py: Define forms for user interactions.
academia/views.py: Implement views for rendering pages and handling requests.
templates/: Contains HTML templates for rendering pages.

About

A moodle-like django web app to manage submissions and evaluations of IT projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published