Jokelingo is a platform for learning a new language while having fun.
Website: https://www.jokelingo.com/
- Python 3.8 or higher
- Pip (Python package manager)
-
Clone or navigate to the project directory:
cd jokelingo -
Create a virtual environment (recommended):
python3 -m venv venv source venv/bin/activate -
Install dependencies:
pip3 install -r requirements.txt
-
Run database migrations:
python3 manage.py migrate
-
Set environment variables for local development:
export DEBUG=True export DATABASE_URL=postgresql://postgres:secret123@localhost:5432/postgres
Start the Django development server:
python3 manage.py runserverThe server will start on http://localhost:8000 by default.
To use a different port:
python3 manage.py runserver 8080