Skip to content
This repository has been archived by the owner on Sep 10, 2023. It is now read-only.
/ marxist.space Public archive

Filterable database of resources for Marxists/Marxist-Leninists.

License

Notifications You must be signed in to change notification settings

prolesoft/marxist.space

Repository files navigation

marxist.space

A ProleSoft project.

Abandoned

Please feel free to fork, use the db in your own project, or do whatever you want; I'm archiving this because I don't have the time to maintain it.

Adding Resources

First please search db.yml to make sure what you want to add isn't already in there. If it is, and you couldn't find it because the tags were incomplete or incorrect or the title or description were incorrect, please change those instead.

Otherwise, add your links to the bottom of db.yml. This is the type of a resource:

interface Resource {
  href: string
  title: string
  tags: string[]
  description?: string
}

An example would be:

resources: # this line is already there, needs to stay at the top
  - href: https://example.com
    title: Example Domain
    description: It's an Example # description is optional
    tags:
      - best
      - website

Developing

Run a local web server and open in the browser. For example, npx luvi or serve-static would work.

git clone git@github.com:prolesoft/marxist.space.git
cd marxist.space
# run your prefered local development server

Releasing

  • Merge or push changes, that's it! If making real code changes, please tag appropriately using npm version, and run npm t to double-check db.yml.

Contributing

See CONTRIBUTING and the open issues.