source code for cosmicflow.space
Find a file
2025-02-10 03:21:14 +05:30
assets Added brainmade.org logo to footer 2025-01-29 00:38:55 +05:30
content Added blog post 2025-01-27 22:40:37 +05:30
.gitignore Fixed images, latex and first real blog. 2024-12-06 16:36:42 +05:30
create-site.el Added support for quartz 2025-02-10 03:21:14 +05:30
create.sh Added support for quartz 2025-02-10 03:21:14 +05:30
LICENSE Initial commit 2024-06-04 15:20:50 +00:00
publish.sh [2024-06-21 Fri] Major changes to the code 2024-06-21 23:08:58 +05:30
README.md Forked cosmicflow.space from cosmicpirates.space 2024-08-17 23:54:55 +05:30

cosmicpirates.space

This is the source code of the cosmicflow website

Quickstart

Currently in the cosmicflow.space source can ge accessed on our private Gitea server.

Step 1 : SSH into the cosmicpirates server with forward tunnel of port 3000 to your local port 3000

ssh into the server and forward the port on which Gitea is running(in our case port 3000) into our local port 3000

ssh -L 3000:localhost:3000 fluid@cosmicflow.space

Step 2: Open Gitea on your Browser

Open http://localhost:3000/ in your browser Create an account if nessasary(Not required if you just want to view but required if you want to push to a repo). You should be able to see this project repository at http://localhost:3000/dibyashanu/cosmicpirates.space

Step 3: Clone the repo

Make a local copy of this repo

git clone  http://localhost:3000/dibyashanu/cosmicpirates.space.git

Go to the repo directory

cd cosmicpirates.space.

Set a username and email - this will be used to track the changes you make to this repository

git config user.name "Your Name Here"
git config user.email "your@email.com"

Set the origin to the required location

git remote add origin http://localhost:3000/dibyashanu/cosmicpirates.space.git

Step 4: Make changes to the local version of the repository

Most of the time try only to make changes to the main.org and generate all other content by either running scripts in this file or runing org-babel-tangle(C-c C-v t in doom emacs). For more details see main.org

Step 5: Push Your changes to this repository

$ git push -u origin main