A web application to store and organize your development code snippets.
- Create and manage code snippets
- Organize snippets by categories
- Edit and remove snippets
- User authentication system
- Clean and intuitive interface
- Docker and Docker Compose installed on your machine
- Clone the repository
- Start the Docker containers:
docker-compose up -d
- Access the server container and set up the application:
# Enter the container
docker-compose exec server bash
# Install dependencies
npm install
# Run database migrations
node_modules/.bin/sequelize db:migrate
# Seed initial data
node_modules/.bin/sequelize db:seed:all
# Start development server
npm run dev
You can login with the following credentials:
- Email: [email protected]
- Password: 123456
This project is open source and available under the MIT License.