Simple Python/Django API which enables the frontend app to create, update and delete an idea, as well get all ideas.
Install steps
- cd code-test-ideas-board-api
- sudo easy_install pip
- sudo pip install virtualenv
- virtualenv venv
- . venv/bin/activate
- pip install -r requirements.txt
- export SECRET_KEY=something-random
- python manage.py migrate
- python manage.py createsuperuser
- python manage.py runserver