cash-stacks/README.md

34 lines
517 B
Markdown
Raw Normal View History

2021-03-16 23:39:24 +00:00
# mvp-django-react
2021-03-17 02:15:33 +00:00
2021-03-16 23:39:24 +00:00
An MVP boilerplate for a django / react app.
2021-03-17 02:15:33 +00:00
2021-03-20 23:52:56 +00:00
# Setup
```
python manage.py migrate
python manage.py createsuperuser --email admin@example.com --username admin --password whatever
```
2021-03-17 02:15:33 +00:00
# Boilerplate Features
2021-03-20 23:52:56 +00:00
2021-03-17 02:15:33 +00:00
- Authentication
- User Table (username, email, password)
2021-03-20 23:52:56 +00:00
# Extras
2021-03-17 02:15:33 +00:00
- dockerized
# Frontend
2021-03-20 23:52:56 +00:00
2021-03-17 02:15:33 +00:00
- [x] useGet hook
- [x] User context
- [x] auth api
- [ ] user crud api (new user flow)
- [ ] socket hook
# Backend
2021-03-20 23:52:56 +00:00
2021-03-17 02:15:33 +00:00
- user CRUD
- login / logout / forgot password
2021-03-20 23:52:56 +00:00
- serve static index (prod)