Before setting up Verti-Grade, ensure you have the following installed on your system:
Download the docker-compose.yml
file from the Verti-Grade GitHub repository:
wget https://github.com/tilalx/verti-grade/blob/main/docker-compose.yml
The docker-compose.yml
file provided below configures the Verti-Grade service.
services:
verti-grade:
container_name: verti-grade-app
image: tilalx/verti-grade:latest
ports:
- "80:80"
# environment:
# SERVER_URL=http://example.com
volumes:
- ./pb:/pb
-
Download Docker Compose File: Ensure you have downloaded the
docker-compose.yml
file as shown above. -
Start Docker Compose: Navigate to the directory containing the
docker-compose.yml
file and run the following command to start the Verti-Grade service:docker-compose up -d
-
Access Verti-Grade: Once the service is running, you can access Verti-Grade through your web browser at
http://localhost
.
If you need to set the SERVER_URL
environment variable, uncomment the relevant line in the docker-compose.yml
file and set the URL appropriately.
To stop the Verti-Grade service, run:
docker-compose down
Verti-Grade is designed to be simple and straightforward to use. Once set up, you can start managing and evaluating grades through the web interface. For detailed usage instructions and examples, refer to the documentation.
We welcome contributions from the community! If you'd like to contribute to Verti-Grade, please follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes.
- Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Create a new Pull Request.
Verti-Grade is licensed under the MIT License. See the LICENSE file for more details.
For more information and detailed documentation, visit the Verti-Grade GitHub repository. If you have any questions or need further assistance, feel free to open an issue or contact the maintainers.
Thank you for using Verti-Grade! Your feedback and contributions are greatly appreciated.