Install python 3.x and pip
Fork and/or clone this project by running the following command
$ git clone https://github.com/Python-Cameroun/website-v2.gitNavigate into the project's directory
$ cd python_website Run this command to install dependencies
pip install -r requirements.txtFor pipenv run this command to install dependencies
pipenv install This command will install all dependencies needed by the Akivas website to run successfully!
Run the default laravel server
python manage.py runserverTo view Python Cameroon User group's Platform go to:
http://localhost:8000/To view Python Cameroon's Platform dashboard go to:
http://localhost:8000/admin/OTHER
Make sure you have postgres install
$ git clone https://github.com/Python-Cameroun/website-v2.git
$ cd python_website
$ pipenv install
$ pipenv shell
# Run Migrations
(python_website) $ python manage.py migrate
# Create a Superuser:
(python_website) $ python manage.py createsuperuser
# Confirm everything is working:
(python_website) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000