Welcome to the Fall Stack event's GitHub repository. Here you'll find everything you need to contribute with your amazing code and ideas!
This is a Núcleo de Estudantes de Informática project, made by students from ISEP.
Fall Stack is a tech event that happens every year with the intention of presenting tech companies to students that are looking for an internship.
This is also a great place for networking and really getting to know the market.
The event takes place in ISEP (Instituto Superior de Engenharia do Porto) in the 28th and 29th of November.
- Clone the repository
- Install dependencies with
pnpm i
- Set up the environment variables
cp .env.example .env
- Run
pnpm migrate
to apply the migrations. - Generate the Prisma Client with
pnpm generate
To start the local server use
pnpm dev
💡 Use our docker compose file to create the MySQL database locally.
docker compose up -d
To apply your Prisma schema changes, sync the database schema with the following command:
pnpm prisma db push
To run the seeding script run
pnpm seed
To wipe the database run
pnpm wipe
In order to contribute to the project, you should look into the board provided in the team's ClickUp. All the information's related to branches naming and code styling is in there.