├── .gitignore ├── README.md ├── assets ├── content-editor-sample.webp ├── contentswift-logo.webp └── sample-content-optimization-tool.webp ├── backend-crt ├── .dockerignore ├── Dockerfile.fastapi ├── Dockerfile.go ├── README.md ├── docker-compose.yml ├── go-app │ ├── go.mod │ ├── go.sum │ └── main.go └── src │ ├── db │ ├── __init__.py │ ├── models.py │ └── post.py │ ├── main.py │ └── requirements.txt └── frontend-crt ├── .eslintrc.json ├── README.md ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── editor │ │ └── [id] │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components │ ├── AddKeyword.tsx │ ├── ChooseReference.tsx │ ├── ListKeyword.tsx │ ├── Loading.tsx │ ├── Outline.tsx │ ├── Sidebar.tsx │ ├── Terms.tsx │ └── TextEditor.tsx └── utils │ └── state.tsx ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/README.md -------------------------------------------------------------------------------- /assets/content-editor-sample.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/assets/content-editor-sample.webp -------------------------------------------------------------------------------- /assets/contentswift-logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/assets/contentswift-logo.webp -------------------------------------------------------------------------------- /assets/sample-content-optimization-tool.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/assets/sample-content-optimization-tool.webp -------------------------------------------------------------------------------- /backend-crt/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/.dockerignore -------------------------------------------------------------------------------- /backend-crt/Dockerfile.fastapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/Dockerfile.fastapi -------------------------------------------------------------------------------- /backend-crt/Dockerfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/Dockerfile.go -------------------------------------------------------------------------------- /backend-crt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/README.md -------------------------------------------------------------------------------- /backend-crt/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/docker-compose.yml -------------------------------------------------------------------------------- /backend-crt/go-app/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/go-app/go.mod -------------------------------------------------------------------------------- /backend-crt/go-app/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/go-app/go.sum -------------------------------------------------------------------------------- /backend-crt/go-app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/go-app/main.go -------------------------------------------------------------------------------- /backend-crt/src/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend-crt/src/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/src/db/models.py -------------------------------------------------------------------------------- /backend-crt/src/db/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/src/db/post.py -------------------------------------------------------------------------------- /backend-crt/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/src/main.py -------------------------------------------------------------------------------- /backend-crt/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/backend-crt/src/requirements.txt -------------------------------------------------------------------------------- /frontend-crt/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend-crt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/README.md -------------------------------------------------------------------------------- /frontend-crt/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/next.config.js -------------------------------------------------------------------------------- /frontend-crt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/package-lock.json -------------------------------------------------------------------------------- /frontend-crt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/package.json -------------------------------------------------------------------------------- /frontend-crt/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/postcss.config.js -------------------------------------------------------------------------------- /frontend-crt/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/public/next.svg -------------------------------------------------------------------------------- /frontend-crt/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/public/vercel.svg -------------------------------------------------------------------------------- /frontend-crt/src/app/editor/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/app/editor/[id]/page.tsx -------------------------------------------------------------------------------- /frontend-crt/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/app/favicon.ico -------------------------------------------------------------------------------- /frontend-crt/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/app/globals.css -------------------------------------------------------------------------------- /frontend-crt/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend-crt/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/app/page.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/AddKeyword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/AddKeyword.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/ChooseReference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/ChooseReference.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/ListKeyword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/ListKeyword.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/Loading.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/Outline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/Outline.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/Terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/Terms.tsx -------------------------------------------------------------------------------- /frontend-crt/src/components/TextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/components/TextEditor.tsx -------------------------------------------------------------------------------- /frontend-crt/src/utils/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/src/utils/state.tsx -------------------------------------------------------------------------------- /frontend-crt/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/tailwind.config.ts -------------------------------------------------------------------------------- /frontend-crt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/tsconfig.json -------------------------------------------------------------------------------- /frontend-crt/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hilmanski/contentswift/HEAD/frontend-crt/yarn.lock --------------------------------------------------------------------------------