https://github.com/thedumbtechguy/devcongress
https://github.com/thedumbtechguy/devcongress
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thedumbtechguy/devcongress
- Owner: thedumbtechguy
- Created: 2024-12-30T21:34:15.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-30T22:15:15.000Z (over 1 year ago)
- Last Synced: 2024-12-30T22:28:32.433Z (over 1 year ago)
- Language: Ruby
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails Application Setup
## Prerequisites
- Ruby 3.3.5
- Node.js & npm
- Yarn
- esbuild
## Installation
1. Clone the repository:
```bash
git clone https://github.com/thedumbtechguy/devcongress.git
cd devcongress
```
2. Install Ruby dependencies:
```bash
bundle install
```
3. Install JavaScript dependencies:
```bash
yarn install
```
4. Set up the database:
```bash
bin/rails db:create db:migrate
```
## Running the Application
Start the development server:
```bash
bin/dev
```
The application should now be running at http://localhost:3000
## Troubleshooting
If you encounter JavaScript compilation issues:
```bash
yarn build
yarn build:css
```
For database issues:
```bash
bin/rails db:reset
```