https://github.com/botshen/mangosteen-1
https://github.com/botshen/mangosteen-1
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/botshen/mangosteen-1
- Owner: botshen
- Created: 2024-04-24T02:52:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-28T10:01:46.000Z (about 2 years ago)
- Last Synced: 2025-03-27T09:28:58.791Z (over 1 year ago)
- Language: Ruby
- Size: 11.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker run -d --name db-for-mangosteen -e POSTGRES_USER=mangosteen -e POSTGRES_PASSWORD=123456 -e POSTGRES_DB=mangosteen_dev -e PGDATA=/var/lib/postgresql/data/pgdata -v mangosteen-data:/var/lib/postgresql/data --network=network1 postgres:14
EDITOR="code --wait" bin/rails credentials:edit
bin/rake docs:generate
open doc/api/index.html
bin/rails g model tag user:references name:string sign:string deleted_at:datetime
bin/rails g controller api/v1/tags_controller
bin/rails g migration AddKindToItem
bin/rails db:migrate