Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iak97/active-storage-file-upload
A simple application using active storage to upload files
https://github.com/iak97/active-storage-file-upload
activestorage aws-s3 fileupload imageupload rails rails7 ruby ruby-on-rails
Last synced: 20 days ago
JSON representation
A simple application using active storage to upload files
- Host: GitHub
- URL: https://github.com/iak97/active-storage-file-upload
- Owner: iak97
- Created: 2023-07-08T15:37:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-09T16:40:49.000Z (over 1 year ago)
- Last Synced: 2024-12-03T15:45:01.969Z (about 1 month ago)
- Topics: activestorage, aws-s3, fileupload, imageupload, rails, rails7, ruby, ruby-on-rails
- Language: Ruby
- Homepage: https://active-storage-image-upload-web.onrender.com/
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Active Storage File Upload
This is a Rails project that demonstrates file upload functionality using Active Storage. It allows users to upload and manage files. In production environment the uploaded images are stored in cloud! ⛅ (AWS s3).
## Prerequisites
Before cloning this repository, please ensure that you have the following installed on your local machine:
- Ruby > 3
- Rails > 7## Installation
To get started with the project, follow these steps:
1. Clone the repository:
```bash
git clone [email protected]:iak97/active-storage-file-upload.git
```2. Change into the project directory:
```bash
cd active-storage-file-upload
```3. Install the required gems:
```bash
bundle install
```4. Edit the `config/database.yml` file with your database credentials.
5. Create the database and run the migrations:
```bash
rails db:create db:migrate
```6. Start the Rails server:
```bash
rails s
```7. You can now access the site in your web browser at [http://localhost:3000](http://localhost:3000).
## Note
If you encounter any issues please let me know. Give a ⭐ if you like this project!!!