In convenant with Christ
Eden-place-website is a website project aimed at building an online presence for Eden Place School and in the long run, provide a online learning management platform for the admistration, staff and pupils of the school.
Visit the live site here
- Django
- HTML3
- CSS3
- Javascript
- JQuery
- Python >=3.10
- Django ==4.1
View the project's requirements.txt file for more
Take the following steps to run the website on your localhost:
- Make sure you have python installed on your system
- Clone the repository.
- Ensure you are on the
master
branch by runninggit checkout master
. - In the base diirectory, run
python -m venv venv
to create a virtual environment or create any virtual environment of your choice. - Run
venv\scripts\activate.bat
on Windows, orsource venv\bin\activate
on Mac, to activate the virtual environment. - Run
pip install -r requirements.txt
to install required dependencies, making sure that 'requirements.txt' is in the base directory. - Change directory into the projects directory
eden_place/
bycd eden_place
from the base directory. - Run
python manage.py runserver
to run localhost - Visit
http://localhost:8000/
to view the website.