CharacterManager

๐Ÿš€ Character Manager - Quick Start Guide

โšก 30-Second Setup

Windows - Installateur (Recommandรฉ)

1. Double-click: CharacterManager-Setup.exe
2. Follow installer wizard
3. Click "Launch" at the end
4. Open browser to: http://localhost:5000

Windows - Portable (Sans installation)

1. Extract: publish/ folder
2. Run: CharacterManager.exe
3. Open browser to: http://localhost:5000

Linux / macOS

chmod +x Deploy-Local.sh
./Deploy-Local.sh
# Or specify custom port:
./Deploy-Local.sh 6000

๐ŸŽฎ First Launch

What to expect:

  1. โœ… Application window opens
  2. โœ… Database created (charactermanager.db)
  3. โœ… Web interface loads on http://localhost:5000
  4. โœ… All images display correctly
  5. โœ… Navigation menu visible

Default Credentials:


๐ŸŽฏ Key Features to Try

  1. Personnages - Manage characters
  2. Capacitรฉs - View 28 game capacities
  3. Inventaires - Manage equipment
  4. Historiques - View history
  5. Classements - Manage rankings

๐Ÿ“ Installation Paths

Windows Installer

C:\Program Files\CharacterManager\
โ”œโ”€โ”€ CharacterManager.exe
โ”œโ”€โ”€ wwwroot/
โ”œโ”€โ”€ charactermanager.db
โ””โ”€โ”€ ... all dependencies

Windows Portable

Any folder you choose:
โ”œโ”€โ”€ CharacterManager.exe
โ”œโ”€โ”€ wwwroot/
โ”œโ”€โ”€ charactermanager.db
โ””โ”€โ”€ ... all dependencies

Linux/macOS

~/Apps/CharacterManager/
โ”œโ”€โ”€ CharacterManager
โ”œโ”€โ”€ wwwroot/
โ”œโ”€โ”€ charactermanager.db
โ””โ”€โ”€ ... all dependencies

โš™๏ธ Configuration

Change Port

Edit appsettings.json:

{
  "Kestrel": {
    "Endpoints": {
      "Http": {
        "Url": "http://localhost:6000"
      }
    }
  }
}

Restart application.

Data Location

Database: charactermanager.db (same folder as exe) Backup/Move it anytime to preserve data.


๐Ÿ†˜ Troubleshooting

Port Already Used

# Find process:
netstat -ano | findstr :5000

# Kill process (if needed):
taskkill /PID <PID> /F

# Or change port in appsettings.json

Database Issues

# Delete database (will be recreated):
rm charactermanager.db

# Restart application

Missing DLL Error

Solution: Delete old installation, reinstall with latest version.

Cannot Connect

  1. Check port 5000 is open
  2. Try: http://127.0.0.1:5000
  3. Check Windows Firewall

๐Ÿ”„ Updates

Installing New Version

Windows Installer:
1. Uninstall current version
2. Run new installer
3. Your data is preserved

Portable:
1. Backup: charactermanager.db
2. Replace all files
3. Restore: charactermanager.db

๐Ÿ“Š System Requirements

Minimum

No External Dependencies


๐ŸŽ“ Getting Help

Application Issues

  1. Check the Logs (in installation folder)
  2. Consult INSTALLATION_GUIDE.md
  3. See DEPLOYMENT.md

Reporting Bugs

Include:


๐Ÿ” Privacy & Security


๐Ÿ“ License

See LICENSE file in installation directory.


๐Ÿš€ Ready to Go!

๐Ÿ‘‰ Run: CharacterManager.exe or Deploy-Local.bat
๐Ÿ‘๏ธ Open: http://localhost:5000
๐ŸŽ‰ Enjoy!


Version: 0.12.0
Last Updated: 2025-01-02
Status: Ready for Use โœ