Skip to content

Commit

Permalink
v0.2 is released & updates focused on site performance, SEO & design.
Browse files Browse the repository at this point in the history
  • Loading branch information
anshumanpattnaik committed Jun 6, 2021
0 parents commit cc4fc11
Show file tree
Hide file tree
Showing 69 changed files with 3,395 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LICENSE
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.
31 changes: 31 additions & 0 deletions README.md
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 added app/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions app/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions app/apps.py
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'
3 changes: 3 additions & 0 deletions app/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
38 changes: 38 additions & 0 deletions app/static/css/about.css
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;
}
}
Loading

0 comments on commit cc4fc11

Please sign in to comment.