-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2 is released & updates focused on site performance, SEO & design.
- Loading branch information
0 parents
commit cc4fc11
Showing
69 changed files
with
3,395 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Anshuman Pattnaik | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<img src="thumbnail/thumbnail.png"/> | ||
|
||
## Technical Overview | ||
To make the platform more stable & secure I have migrated the HackbotOne website to Django, it's because in the old website there are many kinds of missing items that I had found so to make the site more efficient I have to rebuild the site using Django. And also due to Django built-in security protection, it's quite easier to maintain the site more securely. | ||
|
||
### Production URL | ||
https://hackbotone.com | ||
|
||
## HackbotOne API | ||
Before cloning this repository make sure you've cloned the [hackbotone-api](https://github.com/anshumanpattnaik/hackbotone-api) project and completed all the setup in your local machine and the project should be running as per the instruction. | ||
|
||
### Installation | ||
```````````````````````````````````````````````````````````````` | ||
git clone https://github.com/anshumanpattnaik/hackbotone-website.git | ||
cd hackbotone-website | ||
python3 -m venv env | ||
source env/bin/activate | ||
pip3 install -r requirements.txt | ||
python3 manage.py runserver 8003 | ||
```````````````````````````````````````````````````````````````` | ||
|
||
Open http://127.0.0.1:8003 on your browser | ||
|
||
### Note | ||
If you are facing any issues or problems then feel free to raise an issue. | ||
|
||
### Youtube Explantation | ||
1. https://youtu.be/TRaejKHVhj8 | ||
|
||
### License | ||
This project is licensed under the [MIT License](LICENSE) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.contrib import admin | ||
|
||
# Register your models here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class AppConfig(AppConfig): | ||
default_auto_field = 'django.db.models.BigAutoField' | ||
name = 'app' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.db import models | ||
|
||
# Create your models here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
body { | ||
background-color: #fff; | ||
} | ||
.parent-container { | ||
width: 100vw; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
margin-top: 5em; | ||
} | ||
.author-full-bio { | ||
width: 70vw; | ||
line-height: 35px; | ||
margin-top: 1em; | ||
} | ||
.profile-container { | ||
width: 70vw; | ||
height: auto; | ||
margin-top: 3em; | ||
} | ||
.profile-picture { | ||
height: 10em; | ||
} | ||
|
||
@media only screen and (max-width: 1000px) { | ||
.parent-container { | ||
margin-top: 2em; | ||
} | ||
.author-full-bio { | ||
width: 90vw; | ||
} | ||
.profile-container { | ||
width: 90vw; | ||
} | ||
.profile-picture { | ||
height: 8em; | ||
} | ||
} |
Oops, something went wrong.