-
Create a new folder and move into the newly created folder by using the command:
cd your-folder-name
-
Create a virtual environment by using the following command:
- for windows
python -m venv env
- for mac
python3 -m venv env
- for windows
-
Next you need to activate the virtual environment as:
- for windows
env\Scripts\activate
- for mac
source env/bin/activate
- for windows
-
Unzip the code in this folder
-
We now need to move into our project folder. Do this by running the following command:
cd stock-screener
-
Now we need to install all the dependencies of the project. This can be done using the following command:
pip install -r requirements.txt
-
Next you need to run the following command to setup our database:
python manage.py makemigrations app
-
Then we simply need to apply these migrations by running:
python manage.py migrate
-
Next we need to create a super user to acess the database and all its tables:
python manage.py createsuperuser
-
Now finally to run the development server as follows:
python manage.py runserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Drishti1104/stock-screener
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published