mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 12:40:00 +00:00
updating seeds
This commit is contained in:
parent
81f8214700
commit
5be0a9991a
1 changed files with 45 additions and 29 deletions
74
db/seeds.rb
74
db/seeds.rb
|
|
@ -8,49 +8,65 @@
|
|||
|
||||
lefnire = User.create!(email: "tylerrenelle@gmail.com", password: "riastlin", password_confirmation: "riastlin")
|
||||
Habit.create!([
|
||||
{ name: "Focus", score: 8, position: 0, user_id: lefnire.id, notes: "(-1) 15m procrastination
|
||||
{ name: "Focus", score: 0, position: 0, user_id: 1, notes: "(-1) 15m procrastination
|
||||
(+1) Pomorodo" },
|
||||
{ name: "Diet", score: 4, position: 1, user_id: lefnire.id, notes: "(+2) Broccoli
|
||||
{ name: "Diet", score: 0, position: 1, user_id: 1, notes: "(+2) Broccoli
|
||||
(+1) Veggie / Fruit
|
||||
--------------
|
||||
(-1) Bad food
|
||||
(-2) Bad meal" },
|
||||
{ name: "Coffee", score: -3, position: 2, user_id: lefnire.id, notes: "(1x Coffee, 2x Tea)"},
|
||||
{ name: "Gawk", score: 2, position: 3, user_id: lefnire.id },
|
||||
{ name: "Insult Self", score: 0, position: 4, user_id: lefnire.id },
|
||||
{ name: "Negative Talk", score: 0, position: 5, user_id: lefnire.id },
|
||||
{ name: "Exaggeration", score: -1, position: 6, user_id: lefnire.id },
|
||||
{ name: "Nail-biting", score: 0, position: 7, user_id: lefnire.id },
|
||||
{ name: "Temptation Control", score: 0, position: 8, down: false, user_id: lefnire.id, notes: "* meditate for 1 minute, visualize
|
||||
{ name: "Stairs", score: 0, position: 2, habit_type: 2, user_id: 1 },
|
||||
{ name: "Coffee", score: 0, position: 2, user_id: 1, notes: "(1x Coffee, 2x Tea)"},
|
||||
{ name: "Gawk", score: 0, position: 3, user_id: 1 },
|
||||
{ name: "Insult Self", score: 0, position: 4, user_id: 1 },
|
||||
{ name: "Negative Talk", score: 0, position: 5, user_id: 1 },
|
||||
{ name: "Exaggeration", score: 0, position: 6, user_id: 1 },
|
||||
{ name: "Nail-biting", score: 0, position: 7, user_id: 1 },
|
||||
{ name: "Temptation Control", score: 0, position: 8, down: false, user_id: 1, notes: "* meditate for 1 minute, visualize
|
||||
* positive, specific, present self-talk
|
||||
* do first task" },
|
||||
{ name: "Posture", score: 0, position: 9, down: false, user_id: lefnire.id },
|
||||
{ name: "Smile/eye-gaze", score: 0, position: 10, down: false, user_id: lefnire.id },
|
||||
{ name: "Propose, not ask", score: 0, position: 11, down: false, user_id: lefnire.id },
|
||||
{ name: "Posture", score: 0, position: 9, down: false, user_id: 1 },
|
||||
{ name: "Smile/eye-gaze", score: 0, position: 10, down: false, user_id: 1 },
|
||||
{ name: "Propose, not ask", score: 0, position: 11, down: false, user_id: 1 },
|
||||
|
||||
# Morning
|
||||
{ name: "TMJ Exercise", score: 2, position: 12, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "N-Back (10m)", score: 4, position: 13, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Anki", score: -1, position: 14, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "TMJ Exercise", score: 0, position: 12, habit_type: 2, user_id: 1 },
|
||||
{ name: "N-Back (10m)", score: 0, position: 13, habit_type: 2, user_id: 1 },
|
||||
{ name: "Anki", score: 0, position: 14, habit_type: 2, user_id: 1 },
|
||||
|
||||
# Work
|
||||
{ name: "First task of the day", score: 2, position: 15, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Google News", score: 5, position: 16, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Mint", score: 5, position: 17, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Anki (new card)", score: 0, position: 18, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Anki (marked/suspended)", score: 0, position: 19, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "TODO", score: 3, position: 20, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Exercise", score: 0, position: 21, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "First task of the day", score: 0, position: 15, habit_type: 2, user_id: 1 },
|
||||
{ name: "Google News", score: 0, position: 16, habit_type: 2, user_id: 1 },
|
||||
{ name: "Mint", score: 0, position: 17, habit_type: 2, user_id: 1 },
|
||||
{ name: "Anki (new card)", score: 0, position: 18, habit_type: 2, user_id: 1 },
|
||||
{ name: "Anki (marked/suspended)", score: 0, position: 19, habit_type: 2, user_id: 1 },
|
||||
{ name: "TODO", score: 0, position: 20, habit_type: 2, user_id: 1 },
|
||||
{ name: "Exercise", score: 0, position: 21, habit_type: 2, user_id: 1 },
|
||||
|
||||
# Night
|
||||
{ name: "Lumosity", score: 1, position: 22, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "N-Back (10m)", score: -2, position: 23, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Brain (15m)", score: 0, position: 24, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "First task of the night", score: 1, position: 25, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Project (30m)", score: 5, position: 26, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Visualization", score: -4, position: 27, habit_type: 2, user_id: lefnire.id },
|
||||
{ name: "Lumosity", score: 0, position: 22, habit_type: 2, user_id: 1 },
|
||||
{ name: "N-Back (10m)", score: 0, position: 23, habit_type: 2, user_id: 1 },
|
||||
{ name: "Brain (15m)", score: 0, position: 24, habit_type: 2, user_id: 1 },
|
||||
{ name: "First task of the night", score: 0, position: 25, habit_type: 2, user_id: 1 },
|
||||
{ name: "CWC (30m)", score: 0, position: 26, habit_type: 2, user_id: 1 },
|
||||
{ name: "TODO (home)", score: 0, position: 27, habit_type: 2, user_id: 1 },
|
||||
{ name: "Meditate", score: 0, position: 27, habit_type: 2, user_id: 1 },
|
||||
{ name: "Visualization", score: 0, position: 28, habit_type: 2, user_id: 1 },
|
||||
|
||||
# Sunday
|
||||
# { name: "Meetup (review & pick)", score: -1, position: 28, habit_type: 2, user_id: lefnire.id },
|
||||
# { name: "Meetup (review & pick)", score: -1, position: 28, habit_type: 2, user_id: 1 },
|
||||
|
||||
#Rewards
|
||||
{ name: "TV Show", score: 20, position: 28, habit_type: 4, user_id: 1 },
|
||||
{ name: "Coffee", score: 6, position: 29, habit_type: 4, user_id: 1 },
|
||||
{ name: "1h Personal Project", score: 10, position: 30, habit_type: 4, user_id: 1 },
|
||||
{ name: "Spend", score: 5, position: 31, habit_type: 4, user_id: 1 },
|
||||
|
||||
#Todos
|
||||
{ name: "Groupon sites as RSS", score: 0, position: 32, habit_type: 3, user_id: 1 },
|
||||
{ name: "sharon wants a new job", score: 0, position: 33, habit_type: 3, user_id: 1 },
|
||||
{ name: "figure out travel plans, japan", score: 0, position: 34, habit_type: 3, user_id: 1 },
|
||||
{ name: "Boston Massage", score: 0, position: 35, habit_type: 3, user_id: 1 },
|
||||
{ name: "upgrade ocdevel", score: 0, position: 36, habit_type: 3, user_id: 1 },
|
||||
])
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue