https://github.com/andrewmcodes-archive/design_system_demo
https://github.com/andrewmcodes-archive/design_system_demo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andrewmcodes-archive/design_system_demo
- Owner: andrewmcodes-archive
- Created: 2020-02-15T01:53:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-15T01:53:43.000Z (over 5 years ago)
- Last Synced: 2025-01-01T06:22:26.627Z (5 months ago)
- Language: Ruby
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/testdouble/standard)
# README
## Install
### Clone the repository
```shell
git clone [email protected]:andrewmcodes/rails_template.git
cd project
```### Update app name
Navigate to `config/application.rb` and change `AndrewmcodesTemplateApp` to whatever the name of your app is.
Do the same in `config/database.yml`
### Dependencies
- Ruby 2.7
- Node 13.7.0
- Rails 6.0.2.1
- Webpacker 4.2.2
- TailwindCSS 1.2.0
- psql (PostgreSQL) 12.1### Install dependencies
Using [Bundler](https://github.com/bundler/bundler) and [Yarn](https://github.com/yarnpkg/yarn):
```shell
bundle && yarn
```### Initialize the database
```shell
rails db:create db:migrate db:seed
```## Serve
```shell
rails s
```