An App Where Users Can Create Dynamic Tables To Collect All User Data And Manage Them
The first thing to do is to clone the repository:
$ git clone https://github.com/rahul0101rock/Dynamic-tables-Project.git
$ cd Dynamic-tables-ProjectCreate a virtual environment to install dependencies in and activate it:
$ mkvirtualenv myenv
$ pip install django
$ workon myenvThen install the dependencies:
(myenv)$ cd Dynamic-tables-Project
(myenv)$ pip install -r requirements.txtOnce pip has finished installing the dependencies:
(myenv)$ python manage.py migrate
(myenv)$ python manage.py runserverAnd navigate to http://127.0.0.1:8000/ or http://localhost:8000/.