This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: v2 * flip it around * todos * sed to replace categories with tags * todos * fix public * feat: switch to yaml * add wapo article * Added author and date information to post layout (#18) * chore: cleanup * chore: more work * whoops * fix links * chore: more progress * chore: more work again * chore: finish it * chore: add more deployment info Co-authored-by: Abhijay Eshwar <[email protected]>
- Loading branch information
1 parent
11c535b
commit e96db81
Showing
132 changed files
with
32,781 additions
and
1,089 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,33 @@ | ||
version: 2 | ||
|
||
jobs: | ||
deploy: | ||
docker: | ||
- image: circleci/node:13 | ||
working_directory: ~/repo | ||
steps: | ||
- checkout | ||
- deploy: | ||
command: > | ||
ssh -o "StrictHostKeyChecking no" [email protected] | ||
"cd /root/marxist.space && \ | ||
git fetch && \ | ||
git reset --hard origin/feat/v2 && \ | ||
git pull && \ | ||
npm run install-all && \ | ||
npm run build && \ | ||
cd server && \ | ||
./node_modules/.bin/forever restart 0 && \ | ||
sleep 2 && \ | ||
./node_modules/.bin/forever logs 0" | ||
workflows: | ||
version: 2 | ||
deploy: | ||
jobs: | ||
- deploy: | ||
filters: | ||
branches: | ||
ignore: /.*/ | ||
tags: | ||
only: /^v.*/ |
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 |
---|---|---|
@@ -1,13 +1,10 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = LF | ||
charset = utf-8 | ||
max_line_length = 160 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_size = 2 | ||
|
||
[*.md] | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 80 |
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 |
---|---|---|
@@ -1,137 +1,5 @@ | ||
* text=auto | ||
|
||
text eol=lf | ||
|
||
*.7z binary | ||
*.a binary | ||
*.app binary | ||
*.class binary | ||
*.db binary | ||
*.dll binary | ||
*.dylib binary | ||
*.ear binary | ||
*.eot binary | ||
*.eps binary | ||
*.fla binary | ||
*.flv binary | ||
*.gch binary | ||
*.gif binary | ||
*.gz binary | ||
*.ico binary | ||
*.jar binary | ||
*.jpeg binary | ||
*.jpg binary | ||
*.la binary | ||
*.lai binary | ||
*.lib binary | ||
*.lo binary | ||
*.mov binary | ||
*.mp3 binary | ||
*.mp4 binary | ||
*.o binary | ||
*.obj binary | ||
*.out binary | ||
*.p binary | ||
*.pch binary | ||
*.pdf binary | ||
*.pkl binary | ||
* text eol=lf | ||
*.png binary | ||
*.pyc binary | ||
*.pyd binary | ||
*.pyo binary | ||
*.slo binary | ||
*.so binary | ||
*.svg binary | ||
*.swf binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ttf binary | ||
*.war binary | ||
*.woff2 binary | ||
*.woff binary | ||
*.zip binary | ||
|
||
*.adoc text | ||
AUTHORS text | ||
*.bat text | ||
*.bowerrc text | ||
*.cc text | ||
*.coffee text | ||
*.cpp text | ||
.csslintrc text | ||
*.css text | ||
*.csv text | ||
*.c text | ||
*.c++ text | ||
*.cxx text | ||
*.df text | ||
*.dot text | ||
.editorconfig text | ||
*.ejs text | ||
.gitattributes text | ||
.gitconfig text | ||
.gitignore text | ||
*.haml text | ||
*.hbs text | ||
*.hbt text | ||
*.hh text | ||
*.hpp text | ||
.htaccess text | ||
*.h text | ||
*.h++ text | ||
*.html text | ||
*.htm text | ||
*.inc text | ||
*.ini text | ||
*.jade text | ||
*.java text | ||
.jscsrc text | ||
.jshintignore text | ||
.jshintrc text | ||
*.json text | ||
*.jspf text | ||
*.jsp text | ||
*.js text | ||
*.jsx text | ||
*.latte text | ||
*.less text | ||
LICENSE text | ||
*.lua text | ||
*.md text | ||
*.mustache text | ||
*.npmignore text | ||
*.php text | ||
*.phtml text | ||
*.pl text | ||
*.pm text | ||
Procfile text | ||
*.properties text | ||
*.pxd text | ||
*.py3 text | ||
*.py text | ||
*.pyw text | ||
*.pyx text | ||
*.rb text | ||
*.sass text | ||
*.scm text | ||
*.scss text | ||
*.sh text | ||
.slugignore text | ||
*.sql text | ||
*.styl text | ||
*.tab text | ||
*.textile text | ||
*.tld text | ||
*.tmpl text | ||
*.ts text | ||
*.tsv text | ||
*.txt text | ||
*.xml text | ||
*.yaml text | ||
*.yml text | ||
|
||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
|
||
*.jpg binary | ||
package-lock.json -diff | ||
flow-typed/**/* -diff |
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
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 |
---|---|---|
|
@@ -3,3 +3,5 @@ | |
# Expected behavior: | ||
|
||
# Actual behavior: | ||
|
||
# Environment info (relevant browser, OS, etc.; run `npx envinfo`): |
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
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 |
---|---|---|
@@ -1,116 +1,24 @@ | ||
*$py.class | ||
*.7z | ||
*.aux | ||
*.bz2 | ||
*.chi | ||
*.chs.h | ||
*.class | ||
*.dat | ||
*.dyn_hi | ||
*.dyn_o | ||
*.egg | ||
*.elf | ||
*.eventlog | ||
*.gz | ||
*.hi | ||
*.hp | ||
*.jar | ||
*.key | ||
*.ko | ||
*.lock | ||
*.log | ||
*.o | ||
*.obj | ||
*.out | ||
*.pid | ||
*.prof | ||
*.py[cod] | ||
*.seed | ||
*.so | ||
*.so.* | ||
*.pyc | ||
*.swp | ||
*.tar | ||
*.tmp | ||
*~ | ||
.AppleDB | ||
.AppleDesktop | ||
.AppleDouble | ||
.DS_Store | ||
.DocumentRevisions-V100 | ||
.HTF/ | ||
.LSOverride | ||
.Spotlight-V100 | ||
.TemporaryItems | ||
.Trashes | ||
.VolumeIcon.icns | ||
._* | ||
._.DS_Store | ||
.apdisk | ||
.bower-cache | ||
.bower-registry | ||
.bower-tmp | ||
.cabal-sandbox/ | ||
.completer.hist | ||
.fseventsd | ||
.grunt | ||
.hpc | ||
.hsenv | ||
.eslintcache | ||
.idea | ||
.lein-deps-sum | ||
.lein-failures | ||
.lein-plugins/ | ||
.lein-repl-history | ||
.lock-wscript | ||
.merlin | ||
.netrwhist | ||
.nrepl-port | ||
.psci* | ||
.pulp-cache | ||
.sass-cache | ||
.stack-work/ | ||
.vimsession~ | ||
.virtualenv | ||
.opt-in | ||
.opt-out | ||
.vscode | ||
/.build/ | ||
/checkouts/ | ||
/classes/ | ||
Icon | ||
Network Trash Folder | ||
Temporary Items | ||
__pycache__/ | ||
_build/ | ||
_references.js | ||
bower_components | ||
build.js | ||
build/Release | ||
bundle | ||
bundle.js | ||
cabal-dev | ||
cabal.project.local | ||
cabal.sandbox.config | ||
/assets | ||
build | ||
coverage | ||
data | ||
db | ||
dist | ||
dist-* | ||
lib-cov | ||
logs | ||
keys | ||
node_modules | ||
npm-debug.log* | ||
output | ||
pids | ||
pom.xml | ||
pom.xml.asc | ||
public/lib | ||
src/.webpack.js | ||
x/ | ||
.nyc_output | ||
tmp | ||
/tags | ||
target/ | ||
**/*.rs.bak | ||
!Cargo.lock | ||
/db | ||
core | ||
.terraform/ | ||
*.tfstate* | ||
*.tfvars | ||
/_site | ||
/public/index.html | ||
/public/static | ||
/public/*.js | ||
/public/asset-manifest.json |
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 @@ | ||
save-exact=true |
Oops, something went wrong.