A modern Django-based web application for Alucard's Space.
SPACE is a full-stack platform designed to provide a rich user experience with a focus on visual excellence and dynamic interactions. It features a robust backend powered by Django and a responsive frontend.
- Python 3.10 or higher
pip(Python package manager)- Virtual Environment (recommended)
-
Clone the repository:
git clone <repository-url> cd SPACE
-
Create and activate a virtual environment:
python3 -m venv venv source venv/bin/activate -
Install dependencies:
pip install -r requirements.txt
-
Set up environment variables: Create a
.envfile in the root directory:cp .env.example .env # Or create it manuallyAdd your
SECRET_KEYand other settings to.env. -
Run migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
-
Clone the repository:
git clone <repository-url> cd SPACE
-
Create and activate a virtual environment:
python -m venv venv .\venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Set up environment variables: Create a
.envfile in the root directory and add yourSECRET_KEYand other settings. -
Run migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
Access the application at http://127.0.0.1:8000/.