Your Canvas for Words
Follow these steps to set up the project for local development.
-
Clone the repository:
git clone https://github.com/pranit-harekar/writespace.git cd writespace -
Copy the
.env.examplefile to.envand fill in the required environment variables:cp .env.example .env
Make sure to set the
SUPABASE_URLandSUPABASE_ANON_KEYvariables with your Supabase project credentials. You can find these in your Supabase project settings. If you don't have a Supabase project yet, you can create one at supabase.com. You can also set up a local Supabase instance using the Supabase CLI. Follow the instructions in the Supabase CLI documentation to do this. -
Install the dependencies:
npm install
-
Start the development server:
npm run dev
This will start the application in development mode. You can view it in your browser at
http://localhost:8080.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request