Django Ajax recording
This is the follow-up repository for the live recording tutorial on dev.to
Run locally
To run locally
- Clone this repo:
git clone https://github.com/Sirneij/django-ajax-record.git
- Change directory into the folder:
cd django-ajax-record
- Create a virtual environment:
You might opt for other dependencies management tools such as
virtualenv -p python3.8 env
pipenv
orvenv
. It's up to you. - Activate the environment:
- For Linux and Mac machines
source env/bin/activate
- For Windows machine:
.\env\Scripts\activate
- For Linux and Mac machines
- Install the dependencies:
pip install -r requirements.txt
- Make migrations and migrate the database:
python manage.py makemigrations python manage.py migrate
- Finally, run the application:
Visit http://localhost:8000 in your browser
python manage.py runserver
Live version
This application is currentlly live here