Event Mapping Made Simple
Eventure is a powerful event mapping tool that helps you visualize, track, and manage events on your webapp. It provides an intuitive interface for mapping events, tracking user interactions, backend operations, and managing analytics dimensions.
- 📍 Visual Event Mapping
- 🔄 Real-time Event Tracking
- 🔧 Backend Operation Tracking
- 📊 Dimension Management
- 📱 Module-based Architecture
- 🔒 Secure Data Storage (AWS S3)
- Automated Backups
- Next.js 14
- TypeScript
- AWS S3
- Tailwind CSS
- MSW (Mock Service Worker)
eventure/
├── app/ # Next.js app directory
├── src/
│ ├── components/ # React components
│ ├── services/ # AWS S3 and API services
│ ├── types/ # TypeScript definitions
│ ├── utils/ # Utility functions
│ ├── hooks/ # Custom React hooks
│ ├── __mocks__/ # MSW and other test mocks
│ └── __tests__/ # Test files
├── public/ # Static assets
└── doc/ # Documentation
Our data is organized into separate JSON files in S3:
events.json
- Event mappingspage-data.json
- Page informationdimensions.json
- Analytics dimensionsmodules.json
- Module configurationsevent-categories.json
- Event categoriesevent-actions.json
- Event actionsevent-names.json
- Event names
- Clone the repository
git clone git@github.com:team-avesta/Eventure.git
- Install dependencies
npm install
- Set up environment variables
cp .env.example .env.local
- Configure AWS credentials
REGION=your-region
ACCESS_KEY_ID=your-access-key
SECRET_ACCESS_KEY=your-secret-key
S3_BUCKET_NAME=your-bucket-name
- Set up MSW for development (optional)
npm run msw:init
This will create the MSW service worker in your public directory.
- Run development server
npm run dev
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature
) - Make your changes
- The project uses pre-commit hooks that will:
- Run ESLint and fix auto-fixable issues
- Run tests related to your changes
- Commits will be blocked if tests fail
- The project uses pre-commit hooks that will:
- Commit your changes (
git commit -m 'Add some amazing feature'
) - Push to the branch (
git push origin feature/amazing-feature
) - Open a Pull Request