Getting Started
Astro Starter π
Get your app up and running by following the steps below.
Prerequisites
Before you can get started, you will need to have the following installed on your machine.
- Node.js (v20 or higher)
- Git
- pnpm
- A code editor (VSCode, VSCodium, WebStorm, etc.)
Set up a new database
This starter kit uses Drizzle as the database ORM. It is currently configured to use PostgreSQL, but you can manually modify it to use MySQL or SQLite instead. For PostgreSQL, we recommend Neon and Zeabur.
Create a new PostgreSQL database and have the connection string ready. The connection string should look something like this:
Initialize a new project
Next, go to your terminal. Then, clone the Github repository.
Navigate into the project directory.
Install the dependencies.
Now, re-initialize Git for your project.
Create a .env
file in the root of the project by copying the .env.example
file.
Migrate the database
Open the .env
file in your code editor and update the DATABASE_URL
environment variable with your database connection string from above.
Migrate your database.
Now if you check your database, you should see the user
, session
, and subscription
tables.
Start the development server
Run the following command in your terminal to start the development server.
Open http://localhost:4321 in your browser to see your app.
π Congratulations, your app is now up and running! Proceed to the next page to continue with setup.