https://shishaa.pythonanywhere.com/
. Instructions on how to get pipenv here
Get a local copy of the project directory by cloning "opportunity-management" from github.
git clone https://github.com/BabGee/fashion_web.git
cd into the folder
cd fashion_web
I use pipenv for developing this project so I recommend you to create a virtual environment and activate it.
python3 -m pipenv shell
Install the requirements
python3 -m pip install -r requirements.txt
Then follow these steps:
- Move to root folder
cd django_angular
-
Create a
.env
file in the root folder, provide the required database information to the.env
file (.env.example file is provided to help set this information) -
Create the tables with the django command
python manage.py makemigrations
then migrate the changes
python manage.py migrate
Create an admin using command below and enter your preferred username, email and password.(You will use this to login django admin and create products etc)
python3 manage.py createsuperuser
- Finally, run the django server
python manage.py runserver
- Access the django admin by adding ' /admin' to the url and login to create products.
I use exclusively Github
This is an open source project not under any particular license. However framework, packages and libraries used are on their own licenses. Be aware of this if you intend to use part of this project for your own project.