https://github.com/gab706/gelos_enterprises_portal
A project that I had to built for my Cert 3 in IT at Tafe NSW.
https://github.com/gab706/gelos_enterprises_portal
cert3 gelos gelosenterprises it login nsw python tafe
Last synced: 4 months ago
JSON representation
A project that I had to built for my Cert 3 in IT at Tafe NSW.
- Host: GitHub
- URL: https://github.com/gab706/gelos_enterprises_portal
- Owner: gab706
- License: mit
- Created: 2024-02-27T14:13:25.000Z (over 1 year ago)
- Default Branch: production
- Last Pushed: 2024-02-27T15:15:39.000Z (over 1 year ago)
- Last Synced: 2025-01-02T04:22:45.847Z (6 months ago)
- Topics: cert3, gelos, gelosenterprises, it, login, nsw, python, tafe
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gelos Enterprises Portal
An assignment I had to create for my Certificate 3 in IT at Tafe NSW.
## Table of Contents
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Using Docker](#using-docker)
- [Using Python](#using-python)
- [License](#license)## Prerequisites
Ensure you have the following installed on your machine:
- Docker (if using Docker)
- Python 3.x (if running without Docker)## Installation
Clone the repository to your local machine:
```shell
git clone https://github.com/gab706/Gelos_Enterprises_Portal.git
cd Gelos_Enterprises_Portal
```## Using Docker
Build and run the Docker image:
```shell
docker build -t gelos_enterprises_portal .
docker run -p 4000:80 gelos_enterprises_portal
```## Using Python
Create a virtual environment:
```shell
python3 -m venv venv
```Activate the virtual environment:
- On Windows:
```shell
.\venv\Scripts\activate
```- On MacOS:
```shell
source venv/bin/activate
```Run the application:
```shell
python3 src/main.py
```## License
This project is licensed under MIT 2024 - see the LICENSE file for details.