Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DevtranetHQ/Hacksuite
A fullstack suite of apps for hosting virtual hackathons
https://github.com/DevtranetHQ/Hacksuite
hack-suite hackathons hacker-workspace
Last synced: 6 days ago
JSON representation
A fullstack suite of apps for hosting virtual hackathons
- Host: GitHub
- URL: https://github.com/DevtranetHQ/Hacksuite
- Owner: DevtranetHQ
- Created: 2022-03-03T11:55:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-07T12:25:29.000Z (over 1 year ago)
- Last Synced: 2024-08-02T07:10:35.259Z (3 months ago)
- Topics: hack-suite, hackathons, hacker-workspace
- Language: JavaScript
- Homepage:
- Size: 21.7 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hackathon - Hacksuite - A fullstack suite of apps from Devtranet for hosting virtual hackathons. (Platforms / Closed Source 🔒)
README
## What's this?
A fullstack suite of Apps for hosting hackathons
### App structure
.
├── ...
└── pages
├── api # api's
├── [userId] # profile
│ └── index.tsx
├── scrapbook # scrapbook
│ └── index.js
├── projects # projects
│ ├── index.tsx
│ └── preview
│ └── [projectId].tsx
├── events # events
│ ├── index.js
│ └── [eventId].js
├── workshop # workshops
│ ├── index.js
│ └── [workshopId].js
├── newsfeed # newsfeed
│ ├── index.tsx
│ ├── jobs.tsx
│ ├── people.tsx
│ └── projects.tsx
├── app # user dashboard, other pages after signed in
│ ├── _middleware.js
│ ├── complete.tsx
│ ├── create-event.js
│ ├── create-project.js
│ ├── index.js
│ ├── members.js
│ ├── notifications.tsx
│ ├── optional-profile.tsx
│ ├── personal-projects.js
│ ├── profile.js
│ ├── settings.tsx
│ ├── statistics.js
│ └── tickets.js
├── 404.js
├── _app.tsx
├── discord.js
├── email-verification.js
├── forgot-password.js
├── index.js
├── login.js
├── logout.tsx
├── reset-password.js
└── signup.js