Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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