Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ali-ahmadii/django-learning-platform
learning platform
https://github.com/ali-ahmadii/django-learning-platform
Last synced: 9 days ago
JSON representation
learning platform
- Host: GitHub
- URL: https://github.com/ali-ahmadii/django-learning-platform
- Owner: Ali-Ahmadii
- Created: 2023-09-13T08:47:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-16T12:49:10.000Z (about 1 year ago)
- Last Synced: 2023-09-16T19:33:05.238Z (about 1 year ago)
- Language: Python
- Size: 20.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-learning-platform
First Clone Project
- git clone https://github.com/Ali-Ahmadii/django-learning-platform.git
For Activating Virtual Enviroment In Windows Write This Command In Project Folder
- ./venv/Scripts/activate
Also If You Want Install Whole Packages Together With requirements.txt File You Can Write This Command In Command Line Or In Your Terminal
- pip install -r requirements.txt
You Can Make Sure About Installed Python Packages By This Command
- pip freeze
Then We Will Sync Our Database Using These Commnads(we use default sqllite engine here for simplicity)
- python manage.py makemigrations
- python manage.py migrate
Running On localhost
- python manage.py runserver
Running Memchached On Docker
- docker pull memcached
Run The Memcached Docker Container On 11211 Port
- docker run -it --rm --name memcached -p 11211:11211 memcached -m 64
Initialize The Redis Docker Container On 6379 Port
- docker pull redis
- docker run -it --rm --name redis -p 6379:6379 redis