The official website for AGI House. We help ambitious founders build AI-native startups. AGI House is a community, fellowship, and VC fund empowering the world's most talented AI founders and researchers.
View the live site here: https://agihouse.in/
-
Clone the repository:
git clone https://github.com/models-mafia-labs/agihouse-site.git
-
Install dependencies: We recommend using pnpm for faster installations. You can however use
npmoryarn.npm install # or yarn install # or pnpm install
-
Set up environment variables (if any):
- Copy
.env.exampleto.env.local(if.env.exampleexists):cp .env.example .env.local
- Update any necessary variables in
.env.local. Common variables might include API keys for analytics or backend services.Note: Add specific variables required by your setup.# Example: Add any environment variables needed by the application # NEXT_PUBLIC_ANALYTICS_ID= # SOME_API_KEY=
- Copy
-
Run the development server:
pnpm dev # or npm run dev # or yarn dev
-
Open http://localhost:3000 in your browser to see the result.
The app likely uses Next.js features like Fast Refresh, so changes you make to files should be reflected quickly in the browser during development.
Want to contribute? Great!
To fix a bug or enhance an existing feature, follow these steps:
- Fork the repository.
- Create a new branch (
git checkout -b improve-feature-xyz). - Make the appropriate changes in the files.
- Commit your changes (
git commit -am 'feat: Improve feature XYZ'). Use conventional commit messages if possible. - Push to the branch (
git push origin improve-feature-xyz). - Create a Pull Request against the
mainordevelopbranch.
If you find a bug (e.g., the website displays incorrectly, a feature isn't working as expected), kindly open an issue here (replace with your repo URL). Please include:
- A clear description of the bug.
- Steps to reproduce it.
- Expected behavior vs. actual behavior.
- Screenshots if applicable.
If you'd like to request a new feature or enhancement, feel free to do so by opening an issue here (replace with your repo URL). Please describe the feature and its potential value.
This project is built with modern web technologies:
- Next.js - React framework for production.
- Tailwind CSS - Utility-first CSS framework for rapid UI development.
- Framer Motion - Animation library for React.
- TypeScript - Superset of JavaScript adding static types.
# Push to main triggers auto-deploy
git push origin main