Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 821 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 821 Bytes

🍷 AlchemyCP

A webapp for managing ragnarok online accounts for rAthena built on Django

📸 Screenshots

AlchemyCP Screenshot

⚙ Installation

1. Install required python libraries

pip install -r requirements.txt

2. Set-up Database Credentials

# File: <root folder>/alchemyCP/settings.py
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': '<db_name>',
        'USER': '<username>',
        'PASSWORD': '<password>',
        'HOST': '127.0.0.1',
        'PORT': '3306',
    }
}

🧀 Usage

# Prepare Migrations
python manage.py makemigrations account
python manage.py migrate account

# Run the server 
python manage.py runserver

⚠ This is a work in progress!

Please use at your own risk!