-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFASTN.ftd
51 lines (35 loc) · 2.09 KB
/
FASTN.ftd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- import: fastn
-- fastn.package: siddhant.xyz
-- fastn.auto-import: siddhant.xyz/components/page as p
;; -- fastn.url-mappings:
;; TODO: add contents of this in ftd posts/index.ftd
;; WARN: this prevents from .ftd files loading from ./posts/ folder
;; /posts/* -> http+proxy://siddhantcodes.netlify.app/posts/*
;; posts from old website
;; /posts/postgres-full-text-search/* -> http+proxy://siddhantcodes.netlify.app/posts/postgres-full-text-search/*
;; /posts/postgres-triggers/* -> http+proxy://siddhantcodes.netlify.app/posts/postgres-triggers/*
;; /posts/the-ultimate-hasura-development-setup/* -> http+proxy://siddhantcodes.netlify.app/posts/the-ultimate-hasura-development-setup/*
;; /posts/introduction-testing-websites-with-cypress/* -> http+proxy://siddhantcodes.netlify.app/posts/introduction-testing-websites-with-cypress/*
;; /posts/notification-service-in-webapps-using-custom-javascript-events/* -> http+proxy://siddhant.xyz/posts/notification-service-in-webapps-using-custom-javascript-events/*
;; emacs notes
;; /notes/* -> http+proxy://siddhantcodes.netlify.app/notes/*
-- fastn.sitemap:
;; TODO: migrate home page later. Use post page for now
# Home: /
document: site/index.html
# About: /about/
document: site/about/index.html
# Posts: /posts/
document: site/posts/index.html
# Notes: /notes/
document: notes/index.html
# Postgres Full Text Search: /posts/postgres-full-text-search/
document: site/posts/postgres-full-text-search/index.html
# Postgres Triggers: /posts/postgres-triggers/
document: site/posts/postgres-triggers/index.html
# The Ultimate Hasura Development Setup: /posts/the-ultimate-hasura-development-setup/
document: site/posts/the-ultimate-hasura-development-setup/index.html
# Introduction - testing websites with cypress: /posts/introduction-testing-websites-with-cypress/
document: site/posts/introduction-testing-websites-with-cypress/index.html
# Notification service in webapps using custom javascript Events: /posts/notification-service-in-webapps-using-custom-javascript-events/
document: site/posts/notification-service-in-webapps-using-custom-javascript-events/index.html