Este projeto foi desenvolvido para a disciplina INF1039 - Aplicações Interativas da PUC-Rio. O site tem como objetivo divulgar eventos da universidade de forma mais clara e atrativa, facilitando a inscrição dos alunos e incentivando a participação. A plataforma permite visualizar, se inscrever e divulgar eventos, ajudando a aumentar o público nas atividades da PUC-Rio.
MIT License
Copyright (c) [2025] [PUConnect]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- Python 3.8+
- Node.js 14+ (opcional, para desenvolvimento frontend)
- Clone o repositório:
git clone https://github.com/seu-usuario/PUConnect.git
cd PUConnect- Crie e ative um ambiente virtual Python:
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows- Instale as dependências do backend:
pip install -r requirements.txt- (Opcional) Instale as dependências do frontend:
npm install- Configure o banco de dados:
python manage.py migrate- Crie um superusuário:
python manage.py createsuperuser- Execute o servidor de desenvolvimento:
python manage.py runserverproject/- Diretório principal do projeto Djangocore/- Aplicação principalconfig/- Configurações do projeto
requirements.txt- Dependências Pythonpackage.json- Dependências JavaScript (opcional)
- Django 5.1.1
- Django REST Framework 3.15.2
- Django CORS Headers 4.6.0
- Gunicorn 23.0.0
- PostgreSQL (psycopg2-binary 2.9.9)
- Popper.js 2.11.8