Run this command from the top-level directory:
bin/startbin/spark -vLeave off the -v flag for quiet output.
bin/edit-dbDatabase is broken? Want to blow it up? Run this:
bin/wipe-allbin/jmeter-testYou may want to run a command within a docker-compose service (e.g. web).
For example, to open a Django shell on the web service:
docker-compose exec web python manage.py shell_plusOther useful management commands include clear_cache, reset_db, and syncdata.
More commands and details here.
Along the same lines, a simple bash shell can be entered via:
docker-compose exec web bash- As a user, I want to view a list of users and bids that have already been placed in each lottery so I can determine if I want to place a bid.
- As a user, I want to sort the lottery list by end-date so that I can find out which lotteries are ending soonest.
- As a user, I want to view the details of a specific card so that I can decide if I want to bid for it.
- As a user, I want to view the details of a lottery so that I can determine if I want to place a bid in it.
- As a user, I want to see a list of open lotteries so that I can view the details of each.
- As a user, I want to be able to create a new account.
- As a user, I want to easily be able to log into my account from the home page.
- As a user, I want to create new lotteries.
- As a user, I want the site to remember my credentials while I'm on the website.
- As a user, I want my login information to be securely stored.
- As a user, I want to be able to search for lotteries and cards so that I can locate specific entries.
- As a user, I want new lotteries and cards that I add to show up in the search database so that I know others can find them.
- As a user, I want to be able to filter my searches so that I can find specific entries more easily.
- As a user, I want the search bar to be accessible at the top of all screens so that I can easily search from anywhere on the site.
- As a user, I want to be able to see recommended lotteries based on what lotteries are often accessed together by users.