Below commands will setup the environment for the first time.
py -m pip install --user virtualenv
py -m venv env
python3 -m pip install --user virtualenv
python3 -m venv env
Download XAMPP from [here](https://www.apachefriends.org/download.html)
Start MySQL server.
Below are the commands for project Initialization into your local computer
. env/Scripts/activate -- If using gitbash
. env\Scripts\activate -- If using Windows Powershell
pip install -r requirements.txt
cd codedigger
py manage.py migrate
py manage.py runserver
- This would start the development server
source env/bin/activate
pip3 install -r requirements.txt
cd codedigger
python3 manage.py migrate
python3 manage.py runserver
- This would start the development server
deactivate
pip freeze > requirements.txt
Copyright 2021 Codedigger
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Codediger - contact.codedigger@gmail.com
Project Link: https://github.com/Code-dig-ger/Backend