Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
6f23b1e
Initial commit
simlexx-k Apr 24, 2024
4dead2e
Work on blog posts
simlexx-k Apr 26, 2024
a0299bd
Merge branch 'PLPAfrica:main' into master
simlexx-k Apr 26, 2024
4715fa7
Add more functionalities
simlexx-k Apr 26, 2024
90117c6
Merge branch 'master' of https://github.com/simlexx-k/Feb-2024-Python…
simlexx-k Apr 26, 2024
16c2ba8
Add more functionalities
simlexx-k Apr 26, 2024
d6d6c7d
Weather conditions my guy
simlexx-k Apr 26, 2024
590862a
Weather conditions my guy
simlexx-k Apr 26, 2024
266f4ca
Weather conditions my guy
simlexx-k Apr 26, 2024
f78c109
Weather conditions my guy
simlexx-k Apr 26, 2024
2cadbc1
Creation of blog posts
simlexx-k Apr 26, 2024
2641179
UI/UX Remod
simlexx-k Apr 27, 2024
439c5b6
UI/UX Remod
simlexx-k Apr 27, 2024
2272730
UI/UX Remod- borrowed concept from Flowbite
simlexx-k Apr 27, 2024
18646ea
UI/UX Remod- Registration Screen
simlexx-k Apr 28, 2024
d0b9a89
UI/UX Remod- Landing Page & Navbar
simlexx-k Apr 28, 2024
7942cfe
UI/UX Remod- Landing Page & Navbar
simlexx-k Apr 28, 2024
9a07807
Create django.yml
simlexx-k Apr 28, 2024
28245ff
Update requirements.txt
simlexx-k Apr 28, 2024
a0ca539
Update requirements.txt
simlexx-k Apr 28, 2024
0300b6f
Update requirements.txt
simlexx-k Apr 28, 2024
1b06994
Update settings.py
simlexx-k Apr 28, 2024
40102de
Update tests.py
simlexx-k Apr 28, 2024
8b3b5e3
Create xdjango.yml
simlexx-k Apr 28, 2024
7e075b9
Update requirements.txt
simlexx-k Apr 28, 2024
c0952b5
Update xdjango.yml
simlexx-k Apr 28, 2024
45125b2
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
8bcf995
Merge branch 'master' of https://github.com/simlexx-k/Feb-2024-Python…
simlexx-k Apr 29, 2024
7babf0b
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
2a6de5d
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
3ae8e7a
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
05a5eac
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
a2a2577
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
b96282e
UI/UX Remod- Blog Page
simlexx-k Apr 29, 2024
0383502
UI/UX Remod- Blog Page
simlexx-k May 1, 2024
b021486
Additonal Profile SETUP
simlexx-k May 1, 2024
dbad664
Update .env
simlexx-k Aug 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WEATHER_API_KEY = xxxxxxxxxxx
30 changes: 30 additions & 0 deletions .github/workflows/django.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Django CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9, 3.11]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
31 changes: 31 additions & 0 deletions .github/workflows/xdjango.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Django CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install Pillow
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test
36 changes: 36 additions & 0 deletions .idea/blogcast.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/dataSources.local.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .idea/dataSources.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading