mirror of
https://github.com/c0de-archive/c0de.dev-blog.git
synced 2024-12-22 00:52:39 +00:00
Initial Commit
This commit is contained in:
commit
e086c07d66
32
.editorconfig
Normal file
32
.editorconfig
Normal file
@ -0,0 +1,32 @@
|
||||
# http://editorconfig.org
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
# Use 4 spaces for the Python files
|
||||
[*.py]
|
||||
indent_size = 4
|
||||
max_line_length = 80
|
||||
|
||||
# The JSON files contain newlines inconsistently
|
||||
[*.json]
|
||||
insert_final_newline = ignore
|
||||
|
||||
# Minified JavaScript files shouldn't be changed
|
||||
[**.min.js]
|
||||
indent_style = ignore
|
||||
insert_final_newline = ignore
|
||||
|
||||
# Makefiles always use tabs for indentation
|
||||
[Makefile]
|
||||
indent_style = tab
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
venv/
|
||||
.vscode
|
21
license
Normal file
21
license
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019 c0de <c0de@c0de.dev>
|
||||
|
||||
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.
|
22
readme.md
Normal file
22
readme.md
Normal file
@ -0,0 +1,22 @@
|
||||
# c0de.dev Blog
|
||||
|
||||
|
||||
This is a [Pelican](https://getpelican.com) based blog that powers [c0de.dev](https://c0de.dev).
|
||||
There's not really a whole lot here, but it contains all the posts and content; as well as all configuration files.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
1. SSH into your server
|
||||
1. Clone the repo - `git clone https://github.com/alopexc0de/c0de.dev-blog`
|
||||
1. `cd c0de.dev-blog`
|
||||
1. Setup a virtualenv - `virtualenv venv`
|
||||
1. Activate it - `source venv/bin/activate`
|
||||
1. Install dependencies into virtualenv - `pip install -r requirements.txt`
|
||||
|
||||
|
||||
## TODO
|
||||
|
||||
* Service/Unit to run this in a server on prod
|
||||
* Git hooks to automatically fetch content
|
||||
* NginX config
|
Loading…
Reference in New Issue
Block a user