Trybe connects you to event sponsors and helps you to manage tasks for seamless collaboration within your team.
- Manage your student club, group, branch, or organization efficiently.
- Keep track of your team's progress and tasks.
- Create and plan events easily.
- Connect with potential sponsors and pitch to them.
- Stay connected with alumni and receive guidance for the smooth running of your organization.
- Manage your event budget, including registration fees, prize money, sponsored funds, etc.
- Utilize a smooth attendance system based on QR codes and an easy way to distribute certificates.
- Host and provide coupons or offers from sponsors to increase the chances of profit for the sponsor, thus improving your chances of securing sponsorship.
- View and control the points system.
- Find events you're interested in and enroll easily.
- Never lose track of what's going on in your university or even in others.
- Follow clubs or events that interest you.
- Easily access certificates.
- Earn experience points to redeem for swag.
- Use points to redeem coupons from local shops or major brands.
- Find events with the right target audience for you.
- Explore and learn about the organizers, their achievements, and accomplishments.
- Easily promote your business or brand by connecting directly with organizers.
- Provide promotional offers to connect directly with your target audience.
- Conduct surveys to analyze a specific audience or even their target audience.
- Backend: Django, Django Rest Framework
- Frontend: Nextjs 14, ShadcnUI
- Clone the repo
git clone https://github.com/adityanandanx/Trybe cd Trybe
- Setup python virtual environment named
.venv
:python -m venv .venv
- Activate the environment (Only run the command corresponding to your OS/shell):
- Mac/Linux:
source .venv/bin/activate
- Windows Powershell:
.venv\Scripts\Activate.ps1
- Windows Cmd:
.venv\Scripts\Activate.bat
- Install python dependencies:
pip install -r requirements.txt
- Run django development server:
cd backend python manage.py runserver
- Install dependencies:
cd frontend pnpm install
- Run nextjs development server:
pnpm dev
Note:
In order to fix the following error while the setup on windows
about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170. At line:1 char:1 + .venv\Scripts\Activate.ps1 + ~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccessRun the command :
Set-ExecutionPolicy Unrestricted -Scope ProcessIn case you are unable to activate envoirnment in windows powershell or cmd then use git bash terminal and enter the following command.
source .venv/bin/activate