MKotlik / BeMyReader

BeMyReader volunteer-based text-to-audio transcription service for the visually impaired. Project for Computing for Developing Regions, Tufts University, Spring 2021.
0 stars 0 forks source link

Broswing List Interfaces #2

Open benlapointe opened 3 years ago

benlapointe commented 3 years ago

The basic browsing list interface will look like this:

Keypad Function
1, 2, 3 Entries 1, 2, 3
4, 5, 6 Previous, Repeat, Next
9 Main Menu
benlapointe commented 3 years ago

git clone https://github.com/MKotlik/BeMyReader.git git checkout -b iss2_browse_list

Terminal 1:

cd BeMyReader python -m venv venv source venv/bin/activate pip install django (maybe not needed?) pip install twilio (maybe not needed?) cd (into directory) python manage.py migrate (maybe not needed?) python manage.py runserver

Terminal 2: ngrok http 8000

benlapointe commented 3 years ago
benlapointe commented 3 years ago

How to delete database file and start from scratch: https://stackoverflow.com/questions/42150499/how-do-i-delete-db-sqlite3-in-django-1-9-to-start-from-scratch/42150639

Modify an entry:

e = all_entries.get(id=1) e.head = "Entry 1" e.save()