This is a SPA/fullstack boilerplate for AdonisJs, it comes pre-configured with.
# Clone the repository
git clone https://github.com/dillonchanis/adonis-vue-tailwind.git
# Create .env file
cp .env.example .env
# Generate application key
adonis key:generate
# Install dependencies
npm install
This boilerplate comes with SQLite as a dependency for prototyping. If you are not using SQLite be sure to remove it from the package.json
and update your .env
file.
Run the following command to run startup migrations.
adonis migration:run