Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1922059
client-server folder structure
jeethendra2000 May 29, 2021
b86637b
Create django.yml
informatsy May 30, 2021
4851d6f
Update README.md
informatsy May 30, 2021
153a4ae
Update README.md
informatsy May 30, 2021
a9fc172
Update README.md
informatsy May 30, 2021
72a3157
Update README.md
informatsy May 30, 2021
3ed9698
Package information
informatsy May 30, 2021
7fc05db
Package installation
informatsy May 30, 2021
98f6f55
Update README.md
informatsy May 30, 2021
ed28365
Update README.md
informatsy May 30, 2021
f9f4714
Update README.md
informatsy May 30, 2021
06c0bf9
popup noti
pranav-bharadwaj May 31, 2021
d98cca1
popup
pranav-bharadwaj May 31, 2021
52c6f73
Merge branch 'master' of https://github.com/pranav-bharadwaj/informatsy
pranav-bharadwaj May 31, 2021
c99c65d
Merge pull request #1 from pranav-bharadwaj/master
informatsy Jun 1, 2021
7c5f0f1
basic Navbar
jeethendra2000 Jun 4, 2021
c0beb6b
added logo to navbar
jeethendra2000 Jun 5, 2021
1d07e7a
sidebar added
jeethendra2000 Jun 5, 2021
49f38d7
centered logo for sm screen
jeethendra2000 Jun 5, 2021
98a62b1
good
jeethendra2000 Jun 6, 2021
4c60833
good1
jeethendra2000 Jun 6, 2021
0552f63
completed homepage
jeethendra2000 Jun 6, 2021
f81103d
added about page
jeethendra2000 Jun 7, 2021
bbe367d
added wave design
jeethendra2000 Jun 7, 2021
53658ff
added icons to sidebar
jeethendra2000 Jun 7, 2021
c070c8d
added Feature Section
jeethendra2000 Jun 7, 2021
12b4a62
half completed contact section
jeethendra2000 Jun 8, 2021
0fad56e
comleted Footer
jeethendra2000 Jun 9, 2021
9c92067
backend contact form
jeethendra2000 Jun 13, 2021
d2fa6af
add syllabus
jeethendra2000 Jun 14, 2021
f35e175
popup link is in progress
jeethendra2000 Jun 15, 2021
c92e103
resolved contact form issue
jeethendra2000 Jun 20, 2021
732f650
added Resource page
jeethendra2000 Jun 22, 2021
e059372
fixed Entry page bug
jeethendra2000 Jun 25, 2021
0e357f3
added notes card
jeethendra2000 Jun 28, 2021
699e088
informatsy-next-django-boilerplates
pranav-bharadwaj Jun 28, 2021
8230015
django-next-boilerplates
pranav-bharadwaj Jun 28, 2021
47b36eb
Merge branch 'main' into main
informatsy Dec 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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
Loading