Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crmacca/speedmath
Mental Mathematics trainer for primary students. (Assessment Task for my Course)
https://github.com/crmacca/speedmath
mathematics student tutor
Last synced: about 1 month ago
JSON representation
Mental Mathematics trainer for primary students. (Assessment Task for my Course)
- Host: GitHub
- URL: https://github.com/crmacca/speedmath
- Owner: crmacca
- License: apache-2.0
- Created: 2024-03-05T03:53:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-04T06:53:09.000Z (9 months ago)
- Last Synced: 2024-04-04T07:33:21.301Z (9 months ago)
- Topics: mathematics, student, tutor
- Language: Python
- Homepage: https://speedmath.cmcdev.net
- Size: 1.49 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Speedmath
Welcome to the SpeedMath repository. This project was an assessment task, but will remain online as an example of my skills.## 💻 Deployment Instructions
# 🔨 Development Environment
#### Requirements
- Python 3.10+ (3.12 recommended)
- Django 5.0#### Step 1: Clone the Repository
```bash
git clone https://github.com/crmacca/speedmath.git
cd speedmath
```#### Step 2: Database Migrations
Depending on your OS, use the appropriate command to make and apply migrations:
```bash
# For Windows
python manage.py makemigrations
python manage.py migrate# For macOS/Linux
python3 manage.py makemigrations
python3 manage.py migrate
```#### Step 3: Change SECRET_KEY
Navigate to `speedmath/settings.py` and update the `SECRET_KEY`:
```python
SECRET_KEY = 'your_new_secret_key'
```
Generate a new key at [Djecrety](https://djecrety.ir/).#### Step 4: Run the Server
```bash
# For Windows
python manage.py runserver# For macOS/Linux
python3 manage.py runserver
```
Access the app at `http://127.0.0.1:8000`.# 🚀 Production Environment
Not supported, production site accessible at https://speedmath.cmcdev.net