Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nonuabi/iartgallery
https://github.com/nonuabi/iartgallery
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nonuabi/iartgallery
- Owner: nonuabi
- Created: 2021-11-18T11:14:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-23T14:07:05.000Z (7 months ago)
- Last Synced: 2024-06-23T15:27:56.513Z (7 months ago)
- Language: Ruby
- Size: 31.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Ruby Project
## Description
This is a Ruby on Rails application that serves as an art gallery. It allows users to view, upload, and rate artwork.
## Getting Started
### Prerequisites
- Ruby version: This project uses Ruby 3.1.2. You can check your Ruby version with the command `ruby -v`.
- System dependencies: This project requires a PostgreSQL database. Make sure you have it installed and running on your system.### Installation
Follow these steps to get a development environment running:
```sh
# Clone the repository
git clone [email protected]:nonuabi/iArtGallery.git# Navigate into the directory
cd iArtGallery# Install Ruby dependencies
bundle install# Create the database
rails db:create# Run migrations
rails db:migrate# Start the Rails server
rails server```