A simple todo application where you can manage todo entries. Most importantly you can move each todo entry to any position you want. The project is based on:
- simple django api backend is used for database management
- HTML, CSS, JS, AJAX for UI management
Clone the project in your storage and change directory
to the project
git clone https://github.com/kiranparajuli589/Moving-Todo.git
python -m venv myenv
source myenv/bin/activate
make install
make migrate
make create-admin
make serve
yarn test:e2e test/acceptance/features
# with tags
yarn test:e2e test/acceptance/features -t '@focus and not @skip'
# on firefox
BROWSER=firefox yarn test:e2e test/acceptance/features