Welcome to Anime-Connect, a full-stack social media platform dedicated to anime enthusiasts around the world. Connect with fellow fans, share your favorite anime moments, and discover new series to binge-watch!
- User Profiles: Create a personalized profile to share your anime interests.
- Anime Communities: Explore a vast communities of anime series and movies.
- Social Interaction: Follow other users, make friends, post opinions, comment on posts, share post and exchange messages.
- Recommendations: Get personalized anime recommendations based on your preferences.
To get a local copy up and running, follow these simple steps.
Before you proceed, ensure that you have the following prerequisites installed:
- Node.js and npm: Download and Install Node.js
- MongoDB: Download and Install MongoDB
- Git: Download and Install Git
mern-food-website/
├── backend/
│ └── ...
├── frontend/
│ └── ...
└── readme.md
Ensure you are using the latest node version
- Navigate to the
backend
directory:cd backend
. - Install dependencies: Run
npm install
. - Create a
.env
file in thebackend
directory and add the following environment variables:
DB_CONECTION = your_mongodb_connection_string
PORT = 4000
SECRET = Your_jwt_secret_phrase
REFRESH_SECRET = Your_jwt_refresh_secret_phrase
Replace your_mongodb_connection_string
with your MongoDB connection string, and Your_jwt_secret_phrase
with a secret key for JWT authentication.
- Start the Express.js server: Run
npm start
ornodemon server.mjs
ornode server.mjs
.
- Navigate to the
frontend
directory:cd frontend
. - Open util.js in src, set BASE_URL to "http://localhost:4000"
- Install dependencies: Run
npm install
. - Start the React frontend: Run
npm run dev
.
- Access the website at
http://localhost:5173/
.
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. If you'd like to contribute to this project, follow the following steps:-
- Fork the Project
- Create your Feature Branch (git checkout -b feature/AmazingFeature)
- Commit your Changes (git commit -m 'Add some Amazing Feature')
- Push to the Branch (git push origin feature/AmazingFeature)
- Open a Pull Request