This web application provides a digital student card system, allowing students to access and manage their digital identification within an educational institution.
The Digital Student Card WebApp is a modern, Vue.js-based application that offers a user-friendly interface for students to view and manage their digital student IDs. It integrates with a backend API to handle data processing and storage.
Before running the application, you need to set up two configuration files:
Create a config.ini
file in the backend/config/
directory with the following structure:
[general]
url = "http://your-backend-url"
debug = true
[database]
host = "your-db-host"
name = "your-db-name"
user = "your-db-username"
pass = "your-db-password"
Adjust the values according to your environment.
Create a config.js
file in the src/
directory with the following content:
export default {
apiUrl: 'http://your-backend-api-url'
}
Replace 'http://your-backend-api-url'
with the actual URL of your backend API.
- Clone the repository
- Install backend dependencies:
composer install
- Install frontend dependencies:
npm install
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
This project is licensed under the MIT License - see the LICENSE.md file for details.