WikiConecta is a open course in Wikiversity in Portuguese. This is a Django web application for managing the certificates for the participants of the course, available in Toolforge at https://wikiconecta.toolforge.org
Before you begin, ensure you have met the following requirements:
- Python 3
- Django 4.2.5
- FPDF 1.7.2
-
Clone the repository:
git clone https://github.com/WikiMovimentoBrasil/wikiconecta.git
-
Navigate to the project directory:
cd wikiconecta
-
Create a virtual environment (optional but recommended):
python -m venv venv
-
Activate the virtual environment:
- On Windows:
venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate
-
Install project dependencies:
pip install -r requirements.txt
-
Create the database and apply migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
You should now be able to access the project at http://localhost:8000/ in your web browser.
Contributions are welcome! To contribute to Wikiconecta, follow these steps:
- Fork the repository
- Create a new branch: git checkout -b feature/your-feature
- Make your changes and commit them: git commit -m 'Add some feature'
- Push to the branch: git push origin feature/your-feature
- Create a pull request on GitHub
This project is licensed under the MIT License - see the LICENSE file for details.