suryaelidanto / remix-todolist-crud

Home Page:https://remix-todolist-crud.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to Remix Todolist πŸ“ƒ

Remix Todolist is boilerplate for a simple todolist that is ready to go, easy to use, and easy to understand!

Development πŸ’»

To run your Remix app locally, make sure your project's local dependencies are installed:

npm install

Copy .env from .env.example :

cp .env.example .env

Then, configure your .env with your postgresql credentials :

DATABASE_URL="postgresql://USERNAME:PASSWORD@HOST:PORT/DATABASE?schema=public"

Push schema to your database (migrating schema to your database) :

npx migrate db push

Afterwards, start the Remix development server like so:

npm run dev

Open up http://localhost:3000 and you should be ready to go!

Deployment πŸ”₯

After having run the create-remix command and selected "Vercel" as a deployment target, you only need to import your Git repository into Vercel, and it will be deployed.

If you'd like to avoid using a Git repository, you can also deploy the directory by running Vercel CLI:

npm i -g vercel
vercel

It is generally recommended to use a Git repository, because future commits will then automatically be deployed by Vercel, through its Git Integration.

About

https://remix-todolist-crud.vercel.app


Languages

Language:TypeScript 93.8%Language:JavaScript 6.2%