The purpose of our project research is to implement machine learning to extract informative results in form of stock price trends using sentiment analysis.
The clean, fast and right way to start a new Django 4.0.5
powered website.
Setup project environment with virtualenv and pip.
$ virtualenv project-env
$ source project-env/bin/activate
$ pip install -r requirements.txt
# You may want to change the name `projectname`.
$ django-admin startproject --template https://github.com/juanifioren/django-project-template/archive/master.zip projectname
$ cd projectname/
$ cp settings_custom.py.edit settings_custom.py
$ python manage.py migrate
$ python manage.py runserver
- Basic Django scaffolding (commands, templatetags, statics, media files, etc).
- Split settings in two files.
settings_custom.py
for specific environment settings (localhost, production, etc).projectname/settings.py
for core settings. - Simple logging setup ready for production envs.
lease feel free to fix bugs, improve things, provide documentation. Just send a pull request.