Before you begin, make sure you have the following installed on your system:
- Python (version 3.6 or higher)
- pip (Python package installer)
-
Clone the project repository:
git clone https://github.com/LopesLs/StudyChallenger.git
-
Navigate to the project directory:
cd StudyChallenger
-
Create a virtual environment:
-
On Windows:
python -m venv .venv
-
On Linux:
python3 -m venv .venv
-
-
Activate the virtual environment:
-
On macOS and Linux:
source .venv/bin/activate
-
On Windows:
.\.venv\Scripts\activate
-
-
Install project dependencies:
pip install -r requirements.txt
-
Set up the database:
python manage.py migrate
-
Create a superuser (admin) account:
python manage.py createsuperuser
To run the Django project, execute the following command:
python3 manage.py runserver
And you have the website active in localhost:8000
for test and use it.
Fell free to colaborate in this project!!!