This repository contains the frontend code for a course platform, built using Remix.js. The platform follows a feature-sliced design architecture, providing a modular and scalable structure for managing courses and related functionalities. Features
- User authentication and authorization for instructors and learners
- Course catalog with search and filtering options
- Course creation and management for instructors
- Enrolling in courses and tracking progress for learners
- Interactive quizzes and assessments
- Discussion forums for course interactions
- Payment integration for purchasing courses
- User profile management and settings
- Remix.js (React framework for building web applications)
- JavaScript/TypeScript
- HTML/CSS
- Responsive design for optimal user experience across devices
- Tailwind CSS
The frontend codebase follows a feature-sliced design architecture, which encourages separation of concerns and modularity. Each feature is encapsulated within its own module, consisting of components, state management, and API integration specific to that feature. This architecture promotes code reusability, maintainability, and scalability. Getting Started
- Clone the repository to your local machine.
- Install the required dependencies using
yarn
. - Configure the necessary environment variables.
- Start the development server using
yarn start
oryarn dev
.
Contributions are welcome! If you would like to contribute to the project, please open an issue or submit a pull request with your proposed changes. License
This project is licensed under the MIT License. See the LICENSE file for more information.
Feel free to customize and modify the description as per your specific implementation details.
After having run the create-remix
command and selected "Vercel" as a deployment target, you only need to import your Git repository into Vercel, and it will be deployed.
If you'd like to avoid using a Git repository, you can also deploy the directory by running Vercel CLI:
yarn global add vercel
It is generally recommended to use a Git repository, because future commits will then automatically be deployed by Vercel, through its Git Integration.
To run your Remix app locally, make sure your project's local dependencies are installed:
yarn
Afterwards, start the Remix development server like so:
yarn dev
Open up http://localhost:3000 and you should be ready to go!
If you're used to using the vercel dev
command provided by Vercel CLI instead, you can also use that, but it's not needed.