Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pnv2003/fotoverse
Instagram redesigned
https://github.com/pnv2003/fotoverse
bootstrap full-stack instagram mysql restful-api ruby-on-rails social-media web
Last synced: 4 months ago
JSON representation
Instagram redesigned
- Host: GitHub
- URL: https://github.com/pnv2003/fotoverse
- Owner: pnv2003
- Created: 2024-06-16T01:25:38.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-14T03:34:22.000Z (4 months ago)
- Last Synced: 2024-09-27T16:03:52.900Z (4 months ago)
- Topics: bootstrap, full-stack, instagram, mysql, restful-api, ruby-on-rails, social-media, web
- Language: Ruby
- Homepage: https://fotoverse.onrender.com
- Size: 88.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fotoverse
A Social Media Platform Inspired by Instagram
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
## About The Project
This project is the culmination of the 2024 Summer Internship Program at [NUS Technology](https://www.nustechnology.com). As part of the internship, I am trained extensively in the role of a backend engineer, utilizing the Ruby on Rails framework to develop a feature-rich, Instagram-like social media web application. The project focuses on building a scalable and maintainable backend architecture, implementing robust APIs, and managing complex data models to support the application's functionalities.
### Built With
- ![Bootstrap](https://img.shields.io/badge/bootstrap-%238511FA.svg?style=for-the-badge&logo=bootstrap&logoColor=white)
- ![Ruby](https://img.shields.io/badge/ruby-%23CC342D.svg?style=for-the-badge&logo=ruby&logoColor=white)
- ![Rails](https://img.shields.io/badge/rails-%23CC0000.svg?style=for-the-badge&logo=ruby-on-rails&logoColor=white)
- ![Render](https://img.shields.io/badge/Render-%46E3B7.svg?style=for-the-badge&logo=render&logoColor=white)## Getting Started
### Prerequisites
Ensure you have Ruby and Rails installed on your system. Detailed installation instructions can be found at the [RVM website](https://rvm.io).
### Installation
1. Clone the repo
```sh
git clone https://github.com/pnv2003/fotoverse
cd fotoverse
```
2. Configure the databaseOpen the `config/database.yml` file in your project directory. Update the default settings with your database credentials. Here's an example configuration for a PostgreSQL database:
```yaml
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username:
password:
host:development:
<<: *default
database:test:
<<: *default
database:production:
<<: *default
database:
```3. Install dependencies
```sh
bundle install
```
4. Initialize the database```sh
rails db:create db:migrate db:seed
```
5. Serve```sh
rails server
```## Usage
This section is under construction. In the meantime, feel free to explore the app!
## Roadmap
- [x] Add changelog
- [ ] Search content
- [x] Lazy loading user content
- [x] Multi-language support
- [x] English
- [x] Vietnamese
- [x] SMTP mail server configuration
- [x] Third-party authentication services integration
- [x] Google OAuth2
- [x] Facebook Login
- [x] Twitter OAuth 2.0
- [ ] Real-time notifications with WebSocket
- [x] Deploy app to [Render](https://render.com)See the [open issues](https://github.com/pnv2003/fotoverse/issues) for a full list of proposed features (and known issues).
## Contributing
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 have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
This project is currently unlicensed. If you wish to use, modify, or distribute this code, please contact the author for permission. License terms may be added in the future, so please check back for updates.
## Contact
Phuong Ngo - [email protected]
Project Link: [https://github.com/pnv2003/fotoverse](https://github.com/pnv2003/fotoverse)
## Acknowledgments
I would like to express my sincere gratitude to the following individuals and organizations for their support and contributions to this project:
- [NUS Technology](https://nustechnology.com): For providing the opportunity to undertake this internship and for their continuous support and mentorship throughout the project.
- Mentors Nhan Nguyen, [Kiet Nguyen](https://github.com/kieetnvt), [Tam Le](https://github.com/kokorolx), Tien Nguyen: For their invaluable guidance, insights, and encouragement during the development of this application.
- Ruby on Rails Community: For the extensive documentation and helpful resources that made learning and implementing the framework much easier.