Engineered is my personal blog made with Django, where I will be sharing my journey as a software engineer.
- Clone the repo
git clone https://github.com/francofgp/Engineered.git
cd Engineered/
- Install dependencies with Poetry.
poetry install
poetry shell
If you do not have poetry just use
pip install -r requirements.txt
- Run django
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser # Optional if you want to create posts
python manage.py tailwind install
python manage.py runserver
In a seperate console, if you want to edit the css with tailwind, run the following command:
python manage.py tailwind start
If you don't run the command above, the css assets of tailwind will not be updated when you edit the files, thus you will not see any changes in your browser, and you will not have hot reload either.
Home | About | Create Posts |
---|---|---|
There is a home section that shows the last three posts, and your twitter feed | About section to talk about yourself. | Create your posts using an intuitive editor, with code snippets and images 😎. |
Home
All Posts
Post
About
Create post from the admin site
Home
Post
About
mp4.mp4
- Django The web framework for perfectionists with deadlines.
- tailwindcss A utility-first CSS framework for rapid UI development.
- Pillow The friendly PIL fork (Python Imaging Library)
- django-tailwind Django + Tailwind CSS = 💚
- django-ckeditor Django admin CKEditor integration.
- django-taggit Simple tagging for django
- Django The web framework for perfectionists with deadlines.
- python-dotenv Reads key-value pairs from a .env file and can set them as environment variables. It helps in developing applications following the 12-factor principles.
- Default post photo 📷 by Jessica Lewis Creative from Pexels
Closures is provided under the MIT License.
MIT License
Copyright (c) 2022 Pértile Franco Giuliano
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.