My practice app is a web application that creates a practice schedule for a specified field of interest. Currently there is only support for learning guitar. Upon opening the app, cards with different tasks are displayed with data from the database.
The backend is being built using a framework called Django. We chose to use React for our frontend.
Before use, make sure you install the following
- pip install django (make sure you have python installed)
- check SQL configuration in intellij
- install yarn https://classic.yarnpkg.com/en/docs/cli/install/
Go into the directory root/mypractice
- Run "python manage.py runserver" to start the Django server
- Open a new terminal window and navigate to root/mypractice/card-frontend
- Once inside the directory type "yarn start"
You should then see our web app in action!
Login Info
- Name: Admin
- Username: admin
- Password: admin
- Created models for django database
- Created the frontend that renders cards with data pulled from the database
- Everyone is learning React and Django!
- Added animation to home page
- Added temp "admin" user to simulate a "login"
- Added a "course list" component that displays a list of all available courses (currently only Guitar)
- After selecting a course, a skill selection page is rendered. The user can select the skills they want to work on.
- Added backend routes for /courses and /skills to send data to frontend
- Added styling to CSS files for various componnents
In order to use material-ui you need to run the following commands:
yarn add @material-ui/core
yarn add @material-ui/icons
pip install django-rest-auth
- Added styling to the Login Page (Reformatted using material-ui)
- Converted the Card, Card List Course, CourseList and Deck Components into material ui components
- Added global material-ui themes
- Added login authentication
- Completed the backend for the complete button cards
- Added a favorite button for cards
- Started functionality for an opening and closing sidebar
https://disco-moose.herokuapp.com/
- Utilized local storage
- to create login persistance
- to make page refresh re-render the component currently displayed without loging you out
- Added user registration functionality
- Added a functional sidebar with a button for loging out
- Added logout functionality
- Added a time input option for users
- Added "last completed" field to cards (for help with card filtering)
- Created backend infastructure that saves a user's pactice schedule into a Deck object (for use later in creating calendars / past schedules)
- Increased card filtering complexity by presenting least-recently viewed cards first
- Migrated database from SQLite to PostgreSQL
- Deployed to Heroku
- Styling added to Login, Registration, Course List, and Card List pages (cool button effects :) )
- Last completed date added to card
- Added extra course data so there is more content for the app
- Added a calendar so the user can view their old schedules
- Added a landing page with more information about the app before logging in
- Fixed deployment issue on Heroku (previously getting 404 error)
- Commented all code
- Started bug fixing (will do more before Tuesday) to fix issues listed on GitHub
- Restyled various components (on separate branch, not yet merged to Heroku)
- Added a welcome page that the user can see when the first login
- Styled card display and selection page
- Added checkpoints on selection to ensure that the user chose skills and a time to practice before proceeding
- Fixed bugs in Side bar to have correct button functionality